mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 02:17:50 +00:00
Bump to v4.4.0.
This commit is contained in:
14
README.md
14
README.md
@@ -1,4 +1,4 @@
|
||||
# lodash v4.3.0
|
||||
# lodash v4.4.0
|
||||
|
||||
The [lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.
|
||||
|
||||
@@ -12,23 +12,23 @@ $ npm i --save lodash
|
||||
|
||||
In Node.js:
|
||||
```js
|
||||
// load the full build
|
||||
// Load the full build.
|
||||
var _ = require('lodash');
|
||||
// load the core build
|
||||
// Load the core build.
|
||||
var _ = require('lodash/core');
|
||||
// load the fp build for immutable auto-curried iteratee-first data-last methods
|
||||
// Load the fp build for immutable auto-curried iteratee-first data-last methods.
|
||||
var _ = require('lodash/fp');
|
||||
|
||||
// or a method category
|
||||
// Load a method category.
|
||||
var array = require('lodash/array');
|
||||
var object = require('lodash/fp/object');
|
||||
|
||||
// or method for smaller builds with browserify/rollup/webpack
|
||||
// Load a single method for smaller builds with browserify/rollup/webpack.
|
||||
var chunk = require('lodash/chunk');
|
||||
var extend = require('lodash/fp/extend');
|
||||
```
|
||||
|
||||
See the [package source](https://github.com/lodash/lodash/tree/4.3.0-npm) for more details.
|
||||
See the [package source](https://github.com/lodash/lodash/tree/4.4.0-npm) for more details.
|
||||
|
||||
**Note:**<br>
|
||||
Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>
|
||||
|
||||
Reference in New Issue
Block a user