biolib
v1.2.0
Published
Bioruebe's standard library, Javascript edition
Downloads
20
Readme
BioLib (Bio.js)
A helper library used in most of my JS/TS projects.
It provides helper functions for common tasks, including an extensive collection of utilities for working with arrays, objects and strings.
Installation
npm i biolib
Usage
Biolib provides both CommonJS and ESM exports. Type definitions are included.
Depending on your build system import the functions you want to use either from the corresponding package (recommended)
import { isEmptyArray } from "biolib/array";
or from the main bundle
import { isEmptyArray } from "biolib";
Documentation
The full API documentation can be found here