example-lodash
v1.0.7
Published
A mini clone of the [Lodash](https://lodash.com) library.
Readme
example-lodash
A mini clone of the Lodash library.
Purpose
BEWARE: This library was published for learning purposes. It is not intended for use in production-grade software.
Usage
Install it:
npm install example-lodash
Require it:
const _ = require('example-lodash');
Call it:
const results = _.add(1, 2) // => 3
Documentation
The following functions are currently implemented:
function1(add): Adds two numbersfunction2(subtract): Subtract two numbersfunction3(multiply): Multiply two numbersfunction4(divide): Divide two numbers
