@@ -2392,13 +2392,13 @@ module.exports = slice;
2392
2392
exports.noConflict = function () { global._ = current; return exports; };
2393
2393
}()));
2394
2394
}(this, (function () {
2395
- // Underscore.js 1.13.4
2395
+ // Underscore.js 1.13.6
2396
2396
// https://underscorejs.org
2397
2397
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
2398
2398
// Underscore may be freely distributed under the MIT license.
2399
2399
2400
2400
// Current version.
2401
- var VERSION = '1.13.4 ';
2401
+ var VERSION = '1.13.6 ';
2402
2402
2403
2403
// Establish the root object, `window` (`self`) in the browser, `global`
2404
2404
// on the server, or `this` in some virtual machines. We use `self`
@@ -4461,7 +4461,7 @@ module.exports = slice;
4461
4461
/*exported console */
4462
4462
4463
4463
var _ = _dereq_("underscore");
4464
- _.clone = _dereq_("lodash.clone");
4464
+ _.clone = _dereq_("lodash.clone");
4465
4465
var events = _dereq_("events");
4466
4466
var vars = _dereq_("./vars.js");
4467
4467
var messages = _dereq_("./messages.js");
@@ -8930,7 +8930,7 @@ var JSHINT = (function() {
8930
8930
var id = state.tokens.prev;
8931
8931
value = expression(context, 10);
8932
8932
if (value) {
8933
- if (value.identifier && value.value === "undefined") {
8933
+ if (!isConst && value.identifier && value.value === "undefined") {
8934
8934
warning("W080", id, id.value);
8935
8935
}
8936
8936
if (!lone) {
@@ -13527,7 +13527,7 @@ var errors = {
13527
13527
13528
13528
// Constants
13529
13529
E011: "'{a}' has already been declared.",
13530
- E012: "const '{a}' is initialized to 'undefined '.",
13530
+ E012: "Missing initializer for constant '{a} '.",
13531
13531
E013: "Attempting to override '{a}' which is a constant.",
13532
13532
13533
13533
// Regular expressions
@@ -15122,7 +15122,7 @@ exports.regexpDot = /(^|[^\\])(\\\\)*\./;
15122
15122
*/
15123
15123
15124
15124
var _ = _dereq_("underscore");
15125
- _.slice = _dereq_("lodash.slice");
15125
+ _.slice = _dereq_("lodash.slice");
15126
15126
var events = _dereq_("events");
15127
15127
15128
15128
// Used to denote membership in lookup tables (a primitive value such as `true`
0 commit comments