Bump to v4.16.1.

This commit is contained in:
John-David Dalton
2016-09-20 09:47:40 -07:00
parent 0b9ddff408
commit 81b88ae10c
5 changed files with 10 additions and 10 deletions

View File

@@ -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.

View File

@@ -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
View File

@@ -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;
}
});
/*--------------------------------------------------------------------------*/

View File

@@ -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",

View File

@@ -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);
/**