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.
- Host: GitHub
- URL: https://github.com/olaferlandsen/helper-functions-for-javascript
- Owner: olaferlandsen
- Created: 2016-12-12T18:40:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-19T21:12:36.000Z (about 9 years ago)
- Last Synced: 2025-01-09T22:49:57.129Z (12 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```