...**/!(*.map|*.min.js)Size
Gzip
Dependencies
Publish
Install
Publish
Install
Size
Gzip
Dependencies
@@ -23,7 +23,6 @@ | |||
| 23 | // Prevent prototype pollution: | 23 | // Prevent prototype pollution: |
| 24 | // https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg | 24 | // https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg |
| 25 | // https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh | 25 | // https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh |
| 26 | // https://github.com/lodash/lodash/security/advisories/GHSA-w36w-cm3g-pc62 | ||
| 27 | var index = -1, | 26 | var index = -1, |
| 28 | length = path.length; | 27 | length = path.length; |
| 29 | 28 | ||
@@ -1,7 +1,7 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * @license | 2 | * @license |
| 3 | * Lodash (Custom Build) <https://lodash.com/> | 3 | * Lodash (Custom Build) <https://lodash.com/> |
| 4 | * Build: `lodash core -o ./core.js` | 4 | * Build: `lodash core --repo lodash/lodash#4.18.1 -o ./core.js` |
| 5 | * Copyright OpenJS Foundation and other contributors <https://openjsf.org/> | 5 | * Copyright OpenJS Foundation and other contributors <https://openjsf.org/> |
| 6 | * Released under MIT license <https://lodash.com/license> | 6 | * Released under MIT license <https://lodash.com/license> |
| 7 | * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> | 7 | * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> |
@@ -13,7 +13,7 @@ | |||
| 13 | var undefined; | 13 | var undefined; |
| 14 | 14 | ||
| 15 | /** Used as the semantic version number. */ | 15 | /** Used as the semantic version number. */ |
| 16 | var VERSION = '4.18.0'; | 16 | var VERSION = '4.18.1'; |
| 17 | 17 | ||
| 18 | /** Error message constants. */ | 18 | /** Error message constants. */ |
| 19 | var FUNC_ERROR_TEXT = 'Expected a function'; | 19 | var FUNC_ERROR_TEXT = 'Expected a function'; |
@@ -12,7 +12,7 @@ | |||
| 12 | var undefined; | 12 | var undefined; |
| 13 | 13 | ||
| 14 | /** Used as the semantic version number. */ | 14 | /** Used as the semantic version number. */ |
| 15 | var VERSION = '4.18.0'; | 15 | var VERSION = '4.18.1'; |
| 16 | 16 | ||
| 17 | /** Used as the size to enable large array optimizations. */ | 17 | /** Used as the size to enable large array optimizations. */ |
| 18 | var LARGE_ARRAY_SIZE = 200; | 18 | var LARGE_ARRAY_SIZE = 200; |
@@ -4379,7 +4379,6 @@ | |||
| 4379 | // Prevent prototype pollution: | 4379 | // Prevent prototype pollution: |
| 4380 | // https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg | 4380 | // https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg |
| 4381 | // https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh | 4381 | // https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh |
| 4382 | // https://github.com/lodash/lodash/security/advisories/GHSA-w36w-cm3g-pc62 | ||
| 4383 | var index = -1, | 4382 | var index = -1, |
| 4384 | length = path.length; | 4383 | length = path.length; |
| 4385 | 4384 | ||
@@ -1,4 +1,6 @@ | |||
| 1 | var attempt = require('./attempt'), | 1 | var arrayEach = require('./_arrayEach'), |
| 2 | assignWith = require('./assignWith'), | ||
| 3 | attempt = require('./attempt'), | ||
| 2 | baseValues = require('./_baseValues'), | 4 | baseValues = require('./_baseValues'), |
| 3 | customDefaultsAssignIn = require('./_customDefaultsAssignIn'), | 5 | customDefaultsAssignIn = require('./_customDefaultsAssignIn'), |
| 4 | escapeStringChar = require('./_escapeStringChar'), | 6 | escapeStringChar = require('./_escapeStringChar'), |
@@ -1,6 +1,6 @@ | |||
| 1 | { | 1 | { |
| 2 | "name": "lodash", | 2 | "name": "lodash", |
| 3 | "version": "4.18.0", | 3 | "version": "4.18.1", |
| 4 | "description": "Lodash modular utilities.", | 4 | "description": "Lodash modular utilities.", |
| 5 | "keywords": "modules, stdlib, util", | 5 | "keywords": "modules, stdlib, util", |
| 6 | "homepage": "https://lodash.com/", | 6 | "homepage": "https://lodash.com/", |
@@ -13,5 +13,7 @@ | |||
| 13 | "John-David Dalton <john.david.dalton@gmail.com>", | 13 | "John-David Dalton <john.david.dalton@gmail.com>", |
| 14 | "Mathias Bynens <mathias@qiwi.be>" | 14 | "Mathias Bynens <mathias@qiwi.be>" |
| 15 | ], | 15 | ], |
| 16 | "scripts": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" } | 16 | "scripts": { |
| 17 | "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" | ||
| 18 | } | ||
| 17 | } | 19 | } |
@@ -1,4 +1,4 @@ | |||
| 1 | # lodash v4.18.0 | 1 | # lodash v4.18.1 |
| 2 | 2 | ||
| 3 | The [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules. | 3 | The [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules. |
| 4 | 4 | ||
@@ -28,7 +28,7 @@ | |||
| 28 | var curryN = require('lodash/fp/curryN'); | 28 | var curryN = require('lodash/fp/curryN'); |
| 29 | ``` | 29 | ``` |
| 30 | 30 | ||
| 31 | See the [package source](https://github.com/lodash/lodash/tree/4.18.0-npm) for more details. | 31 | See the [package source](https://github.com/lodash/lodash/tree/4.18.1-npm) for more details. |
| 32 | 32 | ||
| 33 | **Note:**<br> | 33 | **Note:**<br> |
| 34 | Install [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL. | 34 | Install [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL. |