sketchmark 0.1.8 → 0.1.9

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.

Potentially problematic release.


This version of sketchmark might be problematic. Click here for more details.

package/dist/index.js CHANGED
@@ -812,6 +812,8 @@ function parse(src) {
812
812
  skipNL();
813
813
  while (cur().type !== "EOF" && cur().value !== "end") {
814
814
  skipNL();
815
+ if (cur().type === "RBRACE")
816
+ break;
815
817
  const v = cur().value;
816
818
  if (v === "data") {
817
819
  dataRows = parseDataArray();