foundation-low
v0.0.5
Published
Low level functions built for speed.
Downloads
9
Readme
Foundation Low
Foundation Low is modern utility library written in Typescript delivering modularity, performance, and extras.
Installation
Using yarn:
$ yarn add foundation-low
Using npm:
$ npm i foundation-low
Example
import { map } from "foundation-low";
const array = [1, 2];
const result = map(array, String);
// result = ["1", "2"];