Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2016-02-26 01:06:04 -08:00
parent 51e917b094
commit d35a9c40be
1337 changed files with 70148 additions and 17945 deletions

View File

@@ -1,5 +1,5 @@
/**
* lodash 3.1.1 (Custom Build) <https://lodash.com/>
* lodash 4.0.0 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -20,7 +20,7 @@ var reEscape = /<%-([\s\S]+?)%>/g,
*
* @static
* @memberOf _
* @type Object
* @type {Object}
*/
var templateSettings = {
@@ -28,7 +28,7 @@ var templateSettings = {
* Used to detect `data` property values to be HTML-escaped.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'escape': reEscape,
@@ -36,7 +36,7 @@ var templateSettings = {
* Used to detect code to be evaluated.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'evaluate': reEvaluate,
@@ -44,7 +44,7 @@ var templateSettings = {
* Used to detect `data` property values to inject.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'interpolate': reInterpolate,
@@ -52,7 +52,7 @@ var templateSettings = {
* Used to reference the data object in the template text.
*
* @memberOf _.templateSettings
* @type string
* @type {string}
*/
'variable': '',
@@ -60,7 +60,7 @@ var templateSettings = {
* Used to import variables into the compiled template.
*
* @memberOf _.templateSettings
* @type Object
* @type {Object}
*/
'imports': {
@@ -68,7 +68,7 @@ var templateSettings = {
* A reference to the `lodash` function.
*
* @memberOf _.templateSettings.imports
* @type Function
* @type {Function}
*/
'_': { 'escape': escape }
}