Skip to content

Commit

Permalink
Rebuild lodash and docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Apr 24, 2018
1 parent 852988e commit 4680cda
Show file tree
Hide file tree
Showing 7 changed files with 398 additions and 390 deletions.
2 changes: 1 addition & 1 deletion dist/lodash.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
var undefined;

/** Used as the semantic version number. */
var VERSION = '4.17.5';
var VERSION = '4.17.9';

/** Error message constants. */
var FUNC_ERROR_TEXT = 'Expected a function';
Expand Down
2 changes: 1 addition & 1 deletion dist/lodash.core.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion dist/lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
var undefined;

/** Used as the semantic version number. */
var VERSION = '4.17.5';
var VERSION = '4.17.9';

/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
Expand Down Expand Up @@ -436,6 +436,14 @@
/** Used to access faster Node.js helpers. */
var nodeUtil = (function() {
try {
// Use `util.types` for Node.js 10+.
var types = freeModule && freeModule.require && freeModule.require('util').types;

if (types) {
return types;
}

// Legacy `process.binding('util')` for Node.js < 10.
return freeProcess && freeProcess.binding && freeProcess.binding('util');
} catch (e) {}
}());
Expand Down
Loading

0 comments on commit 4680cda

Please sign in to comment.