diff options
author | suVene | 2008-12-11 16:05:20 +0000 |
---|---|---|
committer | suVene | 2008-12-11 16:05:20 +0000 |
commit | 696184fa92509ff59fa2d9b72bb51521606d1096 (patch) | |
tree | 062af152b18bbd3050977f0d1e00548b8f7a73ce /_libly.js | |
parent | 7cc889b67fcec3d4d7343a4ad76fbb1685e8ad44 (diff) | |
download | vimperator-plugins-696184fa92509ff59fa2d9b72bb51521606d1096.tar.bz2 |
O.o
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@26426 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to '_libly.js')
-rw-r--r-- | _libly.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ var PLUGIN_INFO = <description>vimperator plugins library?</description> <description lang="ja">適当なライブラリっぽいものたち。</description> <author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author> - <version>0.1.6</version> + <version>0.1.7</version> <minVersion>1.2</minVersion> <maxVersion>2.0pre</maxVersion> <detail><![CDATA[ @@ -102,7 +102,7 @@ libly.$U = {//{{{ }, A: function(iterable) { var ret = []; - if (typeof iterable == 'undefined') return ret; + if (!iterable) return ret; if (typeof iterable == 'string') return [iterable]; if (!(typeof iterable == 'function' && iterable == '[object NodeList]') && iterable.toArray) return iterable.toArray(); |