wp/wp-includes/js/underscore.js
changeset 21 48c4eec2b7e6
parent 19 3d72ae0968f4
child 22 8c2e4d02f4ef
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
     5     var current = global._;
     5     var current = global._;
     6     var exports = global._ = factory();
     6     var exports = global._ = factory();
     7     exports.noConflict = function () { global._ = current; return exports; };
     7     exports.noConflict = function () { global._ = current; return exports; };
     8   }()));
     8   }()));
     9 }(this, (function () {
     9 }(this, (function () {
    10   //     Underscore.js 1.13.3
    10   //     Underscore.js 1.13.6
    11   //     https://underscorejs.org
    11   //     https://underscorejs.org
    12   //     (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
    12   //     (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
    13   //     Underscore may be freely distributed under the MIT license.
    13   //     Underscore may be freely distributed under the MIT license.
    14 
    14 
    15   // Current version.
    15   // Current version.
    16   var VERSION = '1.13.3';
    16   var VERSION = '1.13.6';
    17 
    17 
    18   // Establish the root object, `window` (`self`) in the browser, `global`
    18   // Establish the root object, `window` (`self`) in the browser, `global`
    19   // on the server, or `this` in some virtual machines. We use `self`
    19   // on the server, or `this` in some virtual machines. We use `self`
    20   // instead of `window` for `WebWorker` support.
    20   // instead of `window` for `WebWorker` support.
    21   var root = (typeof self == 'object' && self.self === self && self) ||
    21   var root = (typeof self == 'object' && self.self === self && self) ||