1.0.0 • Published 6 years ago

repture v1.0.0

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

Repture

JavaScript utility library using latest es6 features

Install

npm install repture --save-dev

or

yarn add repture --dev

importing

import repture from 'repture';

spcific module

import { compact, find, fill } from 'repture';

Compact

compact(array)

import { compact } from 'repture';
compact([0, 3, false, [], 'a', `a` '', 3, {}]);
// => [3, [], 'a', `a`, 3, {}]