0.0.5 • Published 5 years ago

foundation-low v0.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

Foundation Low GitHub license

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"];