jhf
v1.0.2
Published
A collection of small helpful javascript functions
Downloads
152
Maintainers
Readme
javascript-helper-functions
A collection of small helpful javascript functions. See Documentation
Sections
- Installation
- Usage
- Documentation
- Contributing Guide
- Code Of Conduct
- Pull Request Guide Templates
- Bug Report Pull Request Template
- Changing Functionality Pull Request Template
- Documentation Improvement Pull Request Template
- Performance Improvement Pull Request Template
- License
Installation
npm install jhfUsage
For client side applications (React.js, React Native, Vue.js) use
import { isArray } from "jhf/client-helper";
isArray({}) // falseimport * as JHF from "jhf/client-helper";
JHF.isArray({}) // falseFor server side applications (Node.js, Deno) use
import { isArray } from "jhf/server-helper";
isArray({}) // falseimport * as JHF from "jhf/server-helper";
JHF.isArray({}) // falseMore
For more methods please see documentation
