mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Bump to v4.16.1.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# lodash-amd v4.16.0
|
||||
# lodash-amd v4.16.1
|
||||
|
||||
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.16.0-amd) for more details.
|
||||
See the [package source](https://github.com/lodash/lodash/tree/4.16.1-amd) for more details.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
define(['./_escapeHtmlChar', './toString'], function(escapeHtmlChar, toString) {
|
||||
|
||||
/** Used to match HTML entities and HTML characters. */
|
||||
var reUnescapedHtml = /[&<>"'`]/g,
|
||||
var reUnescapedHtml = /[&<>"']/g,
|
||||
reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
|
||||
|
||||
/**
|
||||
|
||||
10
main.js
10
main.js
@@ -13,7 +13,7 @@
|
||||
var undefined;
|
||||
|
||||
/** Used as the semantic version number. */
|
||||
var VERSION = '4.16.0';
|
||||
var VERSION = '4.16.1';
|
||||
|
||||
/** Used as the size to enable large array optimizations. */
|
||||
var LARGE_ARRAY_SIZE = 200;
|
||||
@@ -120,8 +120,8 @@
|
||||
reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g;
|
||||
|
||||
/** Used to match HTML entities and HTML characters. */
|
||||
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,
|
||||
reUnescapedHtml = /[&<>"'`]/g,
|
||||
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,
|
||||
reUnescapedHtml = /[&<>"']/g,
|
||||
reHasEscapedHtml = RegExp(reEscapedHtml.source),
|
||||
reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
|
||||
|
||||
@@ -1408,7 +1408,7 @@
|
||||
* // Create a suped-up `defer` in Node.js.
|
||||
* var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;
|
||||
*/
|
||||
function runInContext(context) {
|
||||
var runInContext = (function runInContext(context) {
|
||||
context = context ? _.defaults(root.Object(), context, _.pick(root, contextProps)) : root;
|
||||
|
||||
/** Built-in constructor references. */
|
||||
@@ -16861,7 +16861,7 @@
|
||||
lodash.prototype[iteratorSymbol] = wrapperToIterator;
|
||||
}
|
||||
return lodash;
|
||||
}
|
||||
});
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lodash-amd",
|
||||
"version": "4.16.0",
|
||||
"version": "4.16.1",
|
||||
"description": "Lodash exported as AMD modules.",
|
||||
"keywords": "amd, modules, stdlib, util",
|
||||
"homepage": "https://lodash.com/custom-builds",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
define(['./toString', './_unescapeHtmlChar'], function(toString, unescapeHtmlChar) {
|
||||
|
||||
/** Used to match HTML entities and HTML characters. */
|
||||
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,
|
||||
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,
|
||||
reHasEscapedHtml = RegExp(reEscapedHtml.source);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user