8000 Bump to v3.9.1. · lodash/lodash@b6f9660 · GitHub
[go: up one dir, main page]

Skip to content

Commit b6f9660

Browse files
committed
Bump to v3.9.1.
1 parent f84f83a commit b6f9660

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# lodash v3.9.0
1+
# lodash v3.9.1
22

33
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules.
44

@@ -28,7 +28,7 @@ var array = require('lodash/array');
2828
var chunk = require('lodash/array/chunk');
2929
```
3030

31-
See the [package source](https://github.com/lodash/lodash/tree/3.9.0-npm) for more details.
31+
See the [package source](https://github.com/lodash/lodash/tree/3.9.1-npm) for more details.
3232

3333
**Note:**<br>
3434
Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>
@@ -39,8 +39,8 @@ Install [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash b
3939
lodash is also available in a variety of other builds & module formats.
4040

4141
* npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds
42-
* AMD modules for [modern](https://github.com/lodash/lodash/tree/3.9.0-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.9.0-amd) builds
43-
* ES modules for the [modern](https://github.com/lodash/lodash/tree/3.9.0-es) build
42+
* AMD modules for [modern](https://github.com/lodash/lodash/tree/3.9.1-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.9.1-amd) builds
43+
* ES modules for the [modern](https://github.com/lodash/lodash/tree/3.9.1-es) build
4444

4545
## Further Reading
4646

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* lodash 3.9.0 (Custom Build) <https://lodash.com/>
3+
* lodash 3.9.1 (Custom Build) <https://lodash.com/>
44
* Build: `lodash modern -d -o ./index.js`
55
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
66
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -13,7 +13,7 @@
1313
var undefined;
1414

1515
/** Used as the semantic version number. */
16-
var VERSION = '3.9.0';
16+
var VERSION = '3.9.1';
1717

1818
/** Used to compose bitmasks for wrapper metadata. */
1919
var BIND_FLAG = 1,

internal/SetCache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var cachePush = require('./cachePush'),
22
getNative = require('./getNative');
33

44
/** Native method references. */
5-
var Set = getNative(root, 'Set');
5+
var Set = getNative(global, 'Set');
66

77
/* Native method references for those with the same name as other `lodash` methods. */
88
var nativeCreate = getNative(Object, 'create');

internal/bufferClone.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ var constant = require('../utility/constant'),
22
getNative = require('./getNative');
33

44
/** Native method references. */
5-
var ArrayBuffer = getNative(root, 'ArrayBuffer'),
5+
var ArrayBuffer = getNative(global, 'ArrayBuffer'),
66
bufferSlice = getNative(ArrayBuffer && new ArrayBuffer(0), 'slice'),
77
floor = Math.floor,
8-
Uint8Array = getNative(root, 'Uint8Array');
8+
Uint8Array = getNative(global, 'Uint8Array');
99

1010
/** Used to clone array buffers. */
1111
var Float64Array = (function() {
1212
// Safari 5 errors when using an array buffer to initialize a typed array
1313
// where the array buffer's `byteLength` is not a multiple of the typed
1414
// array's `BYTES_PER_ELEMENT`.
1515
try {
16-
var func = getNative(root, 'Float64Array'),
16+
var func = getNative(global, 'Float64Array'),
1717
result = new func(new ArrayBuffer(10), 0, 1) && func;
1818
} catch(e) {}
1919
return result || null;

internal/createCache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var SetCache = require('./SetCache'),
33
getNative = require('./getNative');
44

55
/** Native method references. */
6-
var Set = getNative(root, 'Set');
6+
var Set = getNative(global, 'Set');
77

88
/* Native method references for those with the same name as other `lodash` methods. */
99
var nativeCreate = getNative(Object, 'create');

internal/metaMap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var getNative = require('./getNative');
22

33
/** Native method references. */
4-
var WeakMap = getNative(root, 'WeakMap');
4+
var WeakMap = getNative(global, 'WeakMap');
55

66
/** Used to store function metadata. */
77
var metaMap = WeakMap && new WeakMap;

lang/isFunction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var objectProto = Object.prototype;
1414
var objToString = objectProto.toString;
1515

1616
/** Native method references. */
17-
var Uint8Array = getNative(root, 'Uint8Array');
17+
var Uint8Array = getNative(global, 'Uint8Array');
1818

1919
/**
2020
* Checks if `value` is classified as a `Function` object.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lodash",
3-
"version": "3.9.0",
3+
"version": "3.9.1",
44
"description": "The modern build of lodash modular utilities.",
55
"homepage": "https://lodash.com/",
66
"icon": "https://lodash.com/icon.svg",

0 commit comments

Comments
 (0)
0