/javascript-helper-functions

A collection of small helpful javascript functions

Primary LanguageJavaScriptMIT LicenseMIT

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