An open API service indexing awesome lists of open source software.

https://github.com/olaferlandsen/helper-functions-for-javascript

Helper functions for javascript.
https://github.com/olaferlandsen/helper-functions-for-javascript

Last synced: 10 months ago
JSON representation

Helper functions for javascript.

Awesome Lists containing this project

README

          

Helper functions for Javascript
======
- [hjs.foreach](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.foreach)
- [isArray](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isArray)
- [isDefined](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isdefined)
- [isEmpty](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isempty)
- [isFloat](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isFloat)
- [isCallback](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.iscallback)
- [isInt](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isint)
- [isNull](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isnull)
- [isNumber](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isnumber)
- [isObject](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isobject)
- [isScalar](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isscalar)
- [isString](https://github.com/olaferlandsen/Helper-function-for-Javascript/wiki/hjs.isstring)

¿How to use?
====
```html


HJS


var fn = hjs.isFunction(function() {
});

console.log ('var fn is a function?', fn)



```