Skip to content

Commit 4680cda

Browse files
committed
Rebuild lodash and docs.
1 parent 852988e commit 4680cda

7 files changed

+398
-390
lines changed

dist/lodash.core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var undefined;
1414

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

1818
/** Error message constants. */
1919
var FUNC_ERROR_TEXT = 'Expected a function';

dist/lodash.core.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lodash.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
var undefined;
1313

1414
/** Used as the semantic version number. */
15-
var VERSION = '4.17.5';
15+
var VERSION = '4.17.9';
1616

1717
/** Used as the size to enable large array optimizations. */
1818
var LARGE_ARRAY_SIZE = 200;
@@ -436,6 +436,14 @@
436436
/** Used to access faster Node.js helpers. */
437437
var nodeUtil = (function() {
438438
try {
439+
// Use `util.types` for Node.js 10+.
440+
var types = freeModule && freeModule.require && freeModule.require('util').types;
441+
442+
if (types) {
443+
return types;
444+
}
445+
446+
// Legacy `process.binding('util')` for Node.js < 10.
439447
return freeProcess && freeProcess.binding && freeProcess.binding('util');
440448
} catch (e) {}
441449
}());

0 commit comments

Comments
 (0)