1.0.1 • Published 7 years ago

maubar v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

maubar

maubar is a JavaScript utilities library very much like Lowbar or Lodash.

Usage

Install and save under dependencies:

$ npm install --save maubar

Require into your project:

const {first} = require('maubar');
// ES2015 modules:
import {first} from 'maubar';

Example

const {first} = require('maubar');

console.log(first([3, 2, 1], 2));
// outputs [3, 2]