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