0.1.5 • Published 9 years ago

small2 v0.1.5

Weekly downloads
3
License
MIT
Repository
-
Last release
9 years ago

#small2 Base Tools for myself.Talk less try it.

Install

npm install small2

Example

var s2 = require('small2');

s2.goneEmpty(null);         // true
s2.goneEmpty(undefined);    // true
s2.goneEmpty(NaN);          // true
s2.goneEmpty(0);            // true
s2.goneEmpty('');           // true
s2.goneEmpty([]);           // true
s2.goneEmpty({});           // true

s2.goneEmpty(['a', 'b']);      // ['a', 'b']
s2.goneEmpty({ a: 'b' });      // { a: 'b' }
s2.goneEmpty('string');        // 'string'
s2.goneEmpty(9527);            // 9527
0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago