1.0.2 • Published 2 years ago

jhf v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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](./documentation/documentation.md)