Compare commits

..

2 Commits

Author SHA1 Message Date
John-David Dalton
bbcefc5447 Bump to v4.17.10. 2018-04-24 15:30:39 -07:00
John-David Dalton
cf8bb34a76 Bump to v4.17.9. 2018-04-24 10:35:43 -07:00
4 changed files with 20 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# lodash-amd v4.17.5
# lodash-amd v4.17.10
The [Lodash](https://lodash.com/) library exported as [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules.
@@ -27,4 +27,4 @@ require({
});
```
See the [package source](https://github.com/lodash/lodash/tree/4.17.5-amd) for more details.
See the [package source](https://github.com/lodash/lodash/tree/4.17.10-amd) for more details.

View File

@@ -15,6 +15,14 @@ define(['./_freeGlobal'], function(freeGlobal) {
/** 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) {}
}());

10
main.js
View File

@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.17.5';
var VERSION = '4.17.10';
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -437,6 +437,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) {}
}());

View File

@@ -1,6 +1,6 @@
{
"name": "lodash-amd",
"version": "4.17.5",
"version": "4.17.10",
"description": "Lodash exported as AMD modules.",
"keywords": "amd, modules, stdlib, util",
"homepage": "https://lodash.com/custom-builds",