npm install fundot-utils
`` js
var utils = require('fundot-utils')
console.log(utils.isArrayLike({}))
console.log(utils.isObject([]))
console.log(utils.slice([1, 2, 3], 2))
console.log(utils.toArray(1))
`
``
$ node example/utils.js
false
false
[ 3 ]
[ 1 ]
` js`
var utils = require('fundot-utils')
Checks if the given argument is an array like object. If the argument contains a length property that's type is a number, it will return true.
Checks if the given argument is a true object. If the argument is a true object then it returns true.
Uses Array.prototype.slice directly.
Creates an array from given arguments and returns it.
With npm do:
```
npm install fundot-utils
MIT