jhf

A collection of small helpful javascript functions. See Documentation

Usage no npm install needed!

<script type="module">
  import jhf from 'https://cdn.skypack.dev/jhf';
</script>

README

javascript-helper-functions

A collection of small helpful javascript functions. See Documentation

Sections

Installation

npm install jhf

Usage

For client side applications use

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

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

JHF.isArray({}) // false

For server side applications 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