1.0.0 • Published 7 years ago
repture v1.0.0
Repture
JavaScript utility library using latest es6 features
Install
npm install repture --save-devor
yarn add repture --devimporting
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, {}]1.0.0
7 years ago