Skip to content

bobbyaxe74/javascript-helper-functions

Repository files navigation

javascript-helper-functions

A collection of small helpful javascript functions. See Documentation

Sections

Installation

npm install jhf

Usage

For client side applications (React.js, React Native, Vue.js) use

import { isArray } from "jhf/client-helper";

isArray({}) // false
import * as JHF from "jhf/client-helper";

JHF.isArray({}) // false

For server side applications (Node.js, Deno) use

import { isArray } from "jhf/server-helper";

isArray({}) // false
import * as JHF from "jhf/server-helper";

JHF.isArray({}) // false

More

For more methods please see documentation

About

A collection of small helpful javascript functions

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published