# lodash-compat v3.10.2

The compatibility build of [lodash](https://lodash.com/) exported as [Node.js](https://nodejs.org/) modules.

## Discontinued

This package has been discontinued. No further development is expected.

## Installation

Using npm:

```bash
$ {sudo -H} npm i -g npm
$ npm i --save lodash-compat
```

In Node.js:

```js
// load the compatibility build
var _ = require('lodash-compat');
// or a method category
var array = require('lodash-compat/array');
// or a method
var chunk = require('lodash-compat/array/chunk');
```

See the [package source](https://github.com/lodash/lodash-compat/tree/3.10.2-npm) for more details.
