svelte 5.48.3 → 5.48.4
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/package.json
CHANGED
|
@@ -508,8 +508,12 @@ function read_value(parser) {
|
|
|
508
508
|
if (escaped) {
|
|
509
509
|
value += '\\' + char;
|
|
510
510
|
escaped = false;
|
|
511
|
+
parser.index++;
|
|
512
|
+
continue;
|
|
511
513
|
} else if (char === '\\') {
|
|
512
514
|
escaped = true;
|
|
515
|
+
parser.index++;
|
|
516
|
+
continue;
|
|
513
517
|
} else if (char === quote_mark) {
|
|
514
518
|
quote_mark = null;
|
|
515
519
|
} else if (char === ')') {
|
package/src/version.js
CHANGED