@digipair/skill-canvas 0.34.3 → 0.35.0

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.
Files changed (2) hide show
  1. package/index.cjs.js +5 -5
  2. package/package.json +1 -1
package/index.cjs.js CHANGED
@@ -23513,14 +23513,14 @@ function indent(str, spaces) {
23513
23513
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23514
23514
  // match is required
23515
23515
  if (!match) {
23516
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23516
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23517
23517
  v: nextMatch1
23518
23518
  };
23519
23519
  }
23520
23520
  var token = match.token, offset = match.offset;
23521
23521
  i1 += offset;
23522
23522
  if (token === " ") {
23523
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23523
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23524
23524
  }
23525
23525
  tokens1 = _to_consumable_array$1(tokens1).concat([
23526
23526
  token
@@ -23539,7 +23539,7 @@ function indent(str, spaces) {
23539
23539
  if (contextKeys.some(function(el) {
23540
23540
  return el.startsWith(name);
23541
23541
  })) {
23542
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23542
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23543
23543
  }
23544
23544
  if (dateTimeIdentifiers.some(function(el) {
23545
23545
  return el === name;
@@ -23558,9 +23558,9 @@ function indent(str, spaces) {
23558
23558
  if (dateTimeIdentifiers.some(function(el) {
23559
23559
  return el.startsWith(name);
23560
23560
  })) {
23561
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23561
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23562
23562
  }
23563
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23563
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23564
23564
  v: nextMatch1
23565
23565
  };
23566
23566
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-canvas",
3
- "version": "0.34.3",
3
+ "version": "0.35.0",
4
4
  "dependencies": {
5
5
  "canvas": "^2.11.2"
6
6
  },