8000 Rebuild lodash and docs. · lodash/lodash@8e150ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e150ad

Browse files
committed
Rebuild lodash and docs.
1 parent c8914a8 commit 8e150ad

File tree

7 files changed

+435
-435
lines changed

7 files changed

+435
-435
lines changed

dist/lodash.core.js

Lines changed: 2 additions & 2 deletions
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.16.0';
16+
var VERSION = '4.16.1';
1717

1818
/** Used as the `TypeError` message for "Functions" methods. */
1919
var FUNC_ERROR_TEXT = 'Expected a function';
@@ -44,7 +44,7 @@
4444
stringTag = '[object String]';
4545

4646
/** Used to match HTML entities and HTML characters. */
47-
var reUnescapedHtml = /[&<>"'`]/g,
47+
var reUnescapedHtml = /[&<>"']/g,
4848
reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
4949

5050
/** Used to map characters to HTML entities. */

dist/lodash.core.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lodash.js

Lines changed: 5 additions & 5 deletions
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.16.0';
15+
var VERSION = '4.16.1';
1616

1717
/** Used as the size to enable large array optimizations. */
1818
var LARGE_ARRAY_SIZE = 200;
@@ -119,8 +119,8 @@
119119
reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g;
120120

121121
/** Used to match HTML entities and HTML characters. */
122-
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,
123-
reUnescapedHtml = /[&<>"'`]/g,
122+
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,
123+
reUnescapedHtml = /[&<>"']/g,
124124
reHasEscapedHtml = RegExp(reEscapedHtml.source),
125125
reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
126126

@@ -1407,7 +1407,7 @@
14071407
* // Create a suped-up `defer` in Node.js.
14081408
* var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;
14091409
*/
1410-
function runInContext(context) {
1410+
var runInContext = (function runInContext(context) {
14111411
context = context ? _.defaults(root.Object(), context, _.pick(root, contextProps)) : root;
14121412

14131413
/** Built-in constructor references. */
@@ -16860,7 +16860,7 @@
1686016860
lodash.prototype[iteratorSymbol] = wrapperToIterator;
1686116861
}
1686216862
return lodash;
16863-
}
16863+
});
1686416864

1686516865
/*--------------------------------------------------------------------------*/
1686616866

0 commit comments

Comments
 (0)
0