@legendapp/state 0.18.4 → 0.18.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/babel.js +275 -283
- package/babel.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/index.mjs +2 -2
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/react.js +11 -3
- package/react.js.map +1 -1
- package/react.mjs +11 -3
- package/react.mjs.map +1 -1
package/babel.js
CHANGED
|
@@ -5283,339 +5283,331 @@ function isValidIdentifier(name, reserved = true) {
|
|
|
5283
5283
|
|
|
5284
5284
|
var lib = {};
|
|
5285
5285
|
|
|
5286
|
-
|
|
5286
|
+
Object.defineProperty(lib, "__esModule", {
|
|
5287
|
+
value: true
|
|
5288
|
+
});
|
|
5289
|
+
lib.readCodePoint = readCodePoint;
|
|
5290
|
+
lib.readInt = readInt;
|
|
5291
|
+
lib.readStringContents = readStringContents;
|
|
5287
5292
|
|
|
5288
|
-
function
|
|
5289
|
-
|
|
5290
|
-
|
|
5293
|
+
var _isDigit = function isDigit(code) {
|
|
5294
|
+
return code >= 48 && code <= 57;
|
|
5295
|
+
};
|
|
5291
5296
|
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
5297
|
+
const forbiddenNumericSeparatorSiblings = {
|
|
5298
|
+
decBinOct: new Set([46, 66, 69, 79, 95, 98, 101, 111]),
|
|
5299
|
+
hex: new Set([46, 88, 95, 120])
|
|
5300
|
+
};
|
|
5301
|
+
const isAllowedNumericSeparatorSibling = {
|
|
5302
|
+
bin: ch => ch === 48 || ch === 49,
|
|
5303
|
+
oct: ch => ch >= 48 && ch <= 55,
|
|
5304
|
+
dec: ch => ch >= 48 && ch <= 57,
|
|
5305
|
+
hex: ch => ch >= 48 && ch <= 57 || ch >= 65 && ch <= 70 || ch >= 97 && ch <= 102
|
|
5306
|
+
};
|
|
5298
5307
|
|
|
5299
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5308
|
+
function readStringContents(type, input, pos, lineStart, curLine, errors) {
|
|
5309
|
+
const initialPos = pos;
|
|
5310
|
+
const initialLineStart = lineStart;
|
|
5311
|
+
const initialCurLine = curLine;
|
|
5312
|
+
let out = "";
|
|
5313
|
+
let containsInvalid = false;
|
|
5314
|
+
let chunkStart = pos;
|
|
5315
|
+
const {
|
|
5316
|
+
length
|
|
5317
|
+
} = input;
|
|
5302
5318
|
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
oct: ch => ch >= 48 && ch <= 55,
|
|
5310
|
-
dec: ch => ch >= 48 && ch <= 57,
|
|
5311
|
-
hex: ch => ch >= 48 && ch <= 57 || ch >= 65 && ch <= 70 || ch >= 97 && ch <= 102
|
|
5312
|
-
};
|
|
5319
|
+
for (;;) {
|
|
5320
|
+
if (pos >= length) {
|
|
5321
|
+
errors.unterminated(initialPos, initialLineStart, initialCurLine);
|
|
5322
|
+
out += input.slice(chunkStart, pos);
|
|
5323
|
+
break;
|
|
5324
|
+
}
|
|
5313
5325
|
|
|
5314
|
-
|
|
5315
|
-
const initialPos = pos;
|
|
5316
|
-
const initialLineStart = lineStart;
|
|
5317
|
-
const initialCurLine = curLine;
|
|
5318
|
-
let out = "";
|
|
5319
|
-
let containsInvalid = false;
|
|
5320
|
-
let chunkStart = pos;
|
|
5321
|
-
const {
|
|
5322
|
-
length
|
|
5323
|
-
} = input;
|
|
5324
|
-
|
|
5325
|
-
for (;;) {
|
|
5326
|
-
if (pos >= length) {
|
|
5327
|
-
errors.unterminated(initialPos, initialLineStart, initialCurLine);
|
|
5328
|
-
out += input.slice(chunkStart, pos);
|
|
5329
|
-
break;
|
|
5330
|
-
}
|
|
5326
|
+
const ch = input.charCodeAt(pos);
|
|
5331
5327
|
|
|
5332
|
-
|
|
5328
|
+
if (isStringEnd(type, ch, input, pos)) {
|
|
5329
|
+
out += input.slice(chunkStart, pos);
|
|
5330
|
+
break;
|
|
5331
|
+
}
|
|
5333
5332
|
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5333
|
+
if (ch === 92) {
|
|
5334
|
+
out += input.slice(chunkStart, pos);
|
|
5335
|
+
let escaped;
|
|
5336
|
+
({
|
|
5337
|
+
ch: escaped,
|
|
5338
|
+
pos,
|
|
5339
|
+
lineStart,
|
|
5340
|
+
curLine
|
|
5341
|
+
} = readEscapedChar(input, pos, lineStart, curLine, type === "template", errors));
|
|
5338
5342
|
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
pos,
|
|
5345
|
-
lineStart,
|
|
5346
|
-
curLine
|
|
5347
|
-
} = readEscapedChar(input, pos, lineStart, curLine, type === "template", errors));
|
|
5348
|
-
|
|
5349
|
-
if (escaped === null) {
|
|
5350
|
-
containsInvalid = true;
|
|
5351
|
-
} else {
|
|
5352
|
-
out += escaped;
|
|
5353
|
-
}
|
|
5343
|
+
if (escaped === null) {
|
|
5344
|
+
containsInvalid = true;
|
|
5345
|
+
} else {
|
|
5346
|
+
out += escaped;
|
|
5347
|
+
}
|
|
5354
5348
|
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5349
|
+
chunkStart = pos;
|
|
5350
|
+
} else if (ch === 8232 || ch === 8233) {
|
|
5351
|
+
++pos;
|
|
5352
|
+
++curLine;
|
|
5353
|
+
lineStart = pos;
|
|
5354
|
+
} else if (ch === 10 || ch === 13) {
|
|
5355
|
+
if (type === "template") {
|
|
5356
|
+
out += input.slice(chunkStart, pos) + "\n";
|
|
5357
|
+
++pos;
|
|
5358
|
+
|
|
5359
|
+
if (ch === 13 && input.charCodeAt(pos) === 10) {
|
|
5360
|
+
++pos;
|
|
5361
|
+
}
|
|
5368
5362
|
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5363
|
+
++curLine;
|
|
5364
|
+
chunkStart = lineStart = pos;
|
|
5365
|
+
} else {
|
|
5366
|
+
errors.unterminated(initialPos, initialLineStart, initialCurLine);
|
|
5367
|
+
}
|
|
5368
|
+
} else {
|
|
5369
|
+
++pos;
|
|
5370
|
+
}
|
|
5371
|
+
}
|
|
5378
5372
|
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5373
|
+
return {
|
|
5374
|
+
pos,
|
|
5375
|
+
str: out,
|
|
5376
|
+
containsInvalid,
|
|
5377
|
+
lineStart,
|
|
5378
|
+
curLine
|
|
5379
|
+
};
|
|
5380
|
+
}
|
|
5387
5381
|
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5382
|
+
function isStringEnd(type, ch, input, pos) {
|
|
5383
|
+
if (type === "template") {
|
|
5384
|
+
return ch === 96 || ch === 36 && input.charCodeAt(pos + 1) === 123;
|
|
5385
|
+
}
|
|
5392
5386
|
|
|
5393
|
-
|
|
5394
|
-
|
|
5387
|
+
return ch === (type === "double" ? 34 : 39);
|
|
5388
|
+
}
|
|
5395
5389
|
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5390
|
+
function readEscapedChar(input, pos, lineStart, curLine, inTemplate, errors) {
|
|
5391
|
+
const throwOnInvalid = !inTemplate;
|
|
5392
|
+
pos++;
|
|
5399
5393
|
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5394
|
+
const res = ch => ({
|
|
5395
|
+
pos,
|
|
5396
|
+
ch,
|
|
5397
|
+
lineStart,
|
|
5398
|
+
curLine
|
|
5399
|
+
});
|
|
5406
5400
|
|
|
5407
|
-
|
|
5401
|
+
const ch = input.charCodeAt(pos++);
|
|
5408
5402
|
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5403
|
+
switch (ch) {
|
|
5404
|
+
case 110:
|
|
5405
|
+
return res("\n");
|
|
5412
5406
|
|
|
5413
|
-
|
|
5414
|
-
|
|
5407
|
+
case 114:
|
|
5408
|
+
return res("\r");
|
|
5415
5409
|
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5410
|
+
case 120:
|
|
5411
|
+
{
|
|
5412
|
+
let code;
|
|
5413
|
+
({
|
|
5414
|
+
code,
|
|
5415
|
+
pos
|
|
5416
|
+
} = readHexChar(input, pos, lineStart, curLine, 2, false, throwOnInvalid, errors));
|
|
5417
|
+
return res(code === null ? null : String.fromCharCode(code));
|
|
5418
|
+
}
|
|
5425
5419
|
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5420
|
+
case 117:
|
|
5421
|
+
{
|
|
5422
|
+
let code;
|
|
5423
|
+
({
|
|
5424
|
+
code,
|
|
5425
|
+
pos
|
|
5426
|
+
} = readCodePoint(input, pos, lineStart, curLine, throwOnInvalid, errors));
|
|
5427
|
+
return res(code === null ? null : String.fromCodePoint(code));
|
|
5428
|
+
}
|
|
5435
5429
|
|
|
5436
|
-
|
|
5437
|
-
|
|
5430
|
+
case 116:
|
|
5431
|
+
return res("\t");
|
|
5438
5432
|
|
|
5439
|
-
|
|
5440
|
-
|
|
5433
|
+
case 98:
|
|
5434
|
+
return res("\b");
|
|
5441
5435
|
|
|
5442
|
-
|
|
5443
|
-
|
|
5436
|
+
case 118:
|
|
5437
|
+
return res("\u000b");
|
|
5444
5438
|
|
|
5445
|
-
|
|
5446
|
-
|
|
5439
|
+
case 102:
|
|
5440
|
+
return res("\f");
|
|
5447
5441
|
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5442
|
+
case 13:
|
|
5443
|
+
if (input.charCodeAt(pos) === 10) {
|
|
5444
|
+
++pos;
|
|
5445
|
+
}
|
|
5452
5446
|
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5447
|
+
case 10:
|
|
5448
|
+
lineStart = pos;
|
|
5449
|
+
++curLine;
|
|
5456
5450
|
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5451
|
+
case 8232:
|
|
5452
|
+
case 8233:
|
|
5453
|
+
return res("");
|
|
5460
5454
|
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5455
|
+
case 56:
|
|
5456
|
+
case 57:
|
|
5457
|
+
if (inTemplate) {
|
|
5458
|
+
return res(null);
|
|
5459
|
+
} else {
|
|
5460
|
+
errors.strictNumericEscape(pos - 1, lineStart, curLine);
|
|
5461
|
+
}
|
|
5468
5462
|
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5463
|
+
default:
|
|
5464
|
+
if (ch >= 48 && ch <= 55) {
|
|
5465
|
+
const startPos = pos - 1;
|
|
5466
|
+
const match = input.slice(startPos, pos + 2).match(/^[0-7]+/);
|
|
5467
|
+
let octalStr = match[0];
|
|
5468
|
+
let octal = parseInt(octalStr, 8);
|
|
5475
5469
|
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5470
|
+
if (octal > 255) {
|
|
5471
|
+
octalStr = octalStr.slice(0, -1);
|
|
5472
|
+
octal = parseInt(octalStr, 8);
|
|
5473
|
+
}
|
|
5480
5474
|
|
|
5481
|
-
|
|
5482
|
-
|
|
5475
|
+
pos += octalStr.length - 1;
|
|
5476
|
+
const next = input.charCodeAt(pos);
|
|
5483
5477
|
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5478
|
+
if (octalStr !== "0" || next === 56 || next === 57) {
|
|
5479
|
+
if (inTemplate) {
|
|
5480
|
+
return res(null);
|
|
5481
|
+
} else {
|
|
5482
|
+
errors.strictNumericEscape(startPos, lineStart, curLine);
|
|
5483
|
+
}
|
|
5484
|
+
}
|
|
5491
5485
|
|
|
5492
|
-
|
|
5493
|
-
|
|
5486
|
+
return res(String.fromCharCode(octal));
|
|
5487
|
+
}
|
|
5494
5488
|
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5489
|
+
return res(String.fromCharCode(ch));
|
|
5490
|
+
}
|
|
5491
|
+
}
|
|
5498
5492
|
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5493
|
+
function readHexChar(input, pos, lineStart, curLine, len, forceLen, throwOnInvalid, errors) {
|
|
5494
|
+
const initialPos = pos;
|
|
5495
|
+
let n;
|
|
5496
|
+
({
|
|
5497
|
+
n,
|
|
5498
|
+
pos
|
|
5499
|
+
} = readInt(input, pos, lineStart, curLine, 16, len, forceLen, false, errors));
|
|
5506
5500
|
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5501
|
+
if (n === null) {
|
|
5502
|
+
if (throwOnInvalid) {
|
|
5503
|
+
errors.invalidEscapeSequence(initialPos, lineStart, curLine);
|
|
5504
|
+
} else {
|
|
5505
|
+
pos = initialPos - 1;
|
|
5506
|
+
}
|
|
5507
|
+
}
|
|
5514
5508
|
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5509
|
+
return {
|
|
5510
|
+
code: n,
|
|
5511
|
+
pos
|
|
5512
|
+
};
|
|
5513
|
+
}
|
|
5520
5514
|
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5515
|
+
function readInt(input, pos, lineStart, curLine, radix, len, forceLen, allowNumSeparator, errors) {
|
|
5516
|
+
const start = pos;
|
|
5517
|
+
const forbiddenSiblings = radix === 16 ? forbiddenNumericSeparatorSiblings.hex : forbiddenNumericSeparatorSiblings.decBinOct;
|
|
5518
|
+
const isAllowedSibling = radix === 16 ? isAllowedNumericSeparatorSibling.hex : radix === 10 ? isAllowedNumericSeparatorSibling.dec : radix === 8 ? isAllowedNumericSeparatorSibling.oct : isAllowedNumericSeparatorSibling.bin;
|
|
5519
|
+
let invalid = false;
|
|
5520
|
+
let total = 0;
|
|
5527
5521
|
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5522
|
+
for (let i = 0, e = len == null ? Infinity : len; i < e; ++i) {
|
|
5523
|
+
const code = input.charCodeAt(pos);
|
|
5524
|
+
let val;
|
|
5531
5525
|
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5526
|
+
if (code === 95 && allowNumSeparator !== "bail") {
|
|
5527
|
+
const prev = input.charCodeAt(pos - 1);
|
|
5528
|
+
const next = input.charCodeAt(pos + 1);
|
|
5535
5529
|
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5530
|
+
if (!allowNumSeparator) {
|
|
5531
|
+
errors.numericSeparatorInEscapeSequence(pos, lineStart, curLine);
|
|
5532
|
+
} else if (Number.isNaN(next) || !isAllowedSibling(next) || forbiddenSiblings.has(prev) || forbiddenSiblings.has(next)) {
|
|
5533
|
+
errors.unexpectedNumericSeparator(pos, lineStart, curLine);
|
|
5534
|
+
}
|
|
5541
5535
|
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5536
|
+
++pos;
|
|
5537
|
+
continue;
|
|
5538
|
+
}
|
|
5545
5539
|
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5540
|
+
if (code >= 97) {
|
|
5541
|
+
val = code - 97 + 10;
|
|
5542
|
+
} else if (code >= 65) {
|
|
5543
|
+
val = code - 65 + 10;
|
|
5544
|
+
} else if (_isDigit(code)) {
|
|
5545
|
+
val = code - 48;
|
|
5546
|
+
} else {
|
|
5547
|
+
val = Infinity;
|
|
5548
|
+
}
|
|
5555
5549
|
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5550
|
+
if (val >= radix) {
|
|
5551
|
+
if (val <= 9 && errors.invalidDigit(pos, lineStart, curLine, radix)) {
|
|
5552
|
+
val = 0;
|
|
5553
|
+
} else if (forceLen) {
|
|
5554
|
+
val = 0;
|
|
5555
|
+
invalid = true;
|
|
5556
|
+
} else {
|
|
5557
|
+
break;
|
|
5558
|
+
}
|
|
5559
|
+
}
|
|
5566
5560
|
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5561
|
+
++pos;
|
|
5562
|
+
total = total * radix + val;
|
|
5563
|
+
}
|
|
5570
5564
|
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5565
|
+
if (pos === start || len != null && pos - start !== len || invalid) {
|
|
5566
|
+
return {
|
|
5567
|
+
n: null,
|
|
5568
|
+
pos
|
|
5569
|
+
};
|
|
5570
|
+
}
|
|
5577
5571
|
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5572
|
+
return {
|
|
5573
|
+
n: total,
|
|
5574
|
+
pos
|
|
5575
|
+
};
|
|
5576
|
+
}
|
|
5583
5577
|
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5578
|
+
function readCodePoint(input, pos, lineStart, curLine, throwOnInvalid, errors) {
|
|
5579
|
+
const ch = input.charCodeAt(pos);
|
|
5580
|
+
let code;
|
|
5587
5581
|
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5582
|
+
if (ch === 123) {
|
|
5583
|
+
++pos;
|
|
5584
|
+
({
|
|
5585
|
+
code,
|
|
5586
|
+
pos
|
|
5587
|
+
} = readHexChar(input, pos, lineStart, curLine, input.indexOf("}", pos) - pos, true, throwOnInvalid, errors));
|
|
5588
|
+
++pos;
|
|
5595
5589
|
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5590
|
+
if (code !== null && code > 0x10ffff) {
|
|
5591
|
+
if (throwOnInvalid) {
|
|
5592
|
+
errors.invalidCodePoint(pos, lineStart, curLine);
|
|
5593
|
+
} else {
|
|
5594
|
+
return {
|
|
5595
|
+
code: null,
|
|
5596
|
+
pos
|
|
5597
|
+
};
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5600
|
+
} else {
|
|
5601
|
+
({
|
|
5602
|
+
code,
|
|
5603
|
+
pos
|
|
5604
|
+
} = readHexChar(input, pos, lineStart, curLine, 4, false, throwOnInvalid, errors));
|
|
5605
|
+
}
|
|
5612
5606
|
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
}
|
|
5618
|
-
return lib;
|
|
5607
|
+
return {
|
|
5608
|
+
code,
|
|
5609
|
+
pos
|
|
5610
|
+
};
|
|
5619
5611
|
}
|
|
5620
5612
|
|
|
5621
5613
|
var constants = {};
|
|
@@ -6037,7 +6029,7 @@ function requireCore () {
|
|
|
6037
6029
|
|
|
6038
6030
|
var _helperValidatorIdentifier = lib$1;
|
|
6039
6031
|
|
|
6040
|
-
var _helperStringParser =
|
|
6032
|
+
var _helperStringParser = lib;
|
|
6041
6033
|
|
|
6042
6034
|
var _constants = constants;
|
|
6043
6035
|
|