The bittydash
A small JavaScript utility library. And there is the document website.
npm
npm i bittydash -S
pnpm
pnpm add bittydash -S
import { isNaN, uniq } from "bittydash";
console.log(isNaN(1)); // false
console.log(isNaN(NaN)); // true
console.log(uniq([1, 1, 2, 3, 3])); // [1,2,3]
Generated using TypeDoc