summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/table/dist/validateTableData.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/table/dist/validateTableData.js')
-rw-r--r--tools/node_modules/eslint/node_modules/table/dist/validateTableData.js63
1 files changed, 11 insertions, 52 deletions
diff --git a/tools/node_modules/eslint/node_modules/table/dist/validateTableData.js b/tools/node_modules/eslint/node_modules/table/dist/validateTableData.js
index bbd51ffb07..56a3e19024 100644
--- a/tools/node_modules/eslint/node_modules/table/dist/validateTableData.js
+++ b/tools/node_modules/eslint/node_modules/table/dist/validateTableData.js
@@ -31,61 +31,20 @@ const validateTableData = rows => {
}
const columnNumber = rows[0].length;
- var _iteratorNormalCompletion = true;
- var _didIteratorError = false;
- var _iteratorError = undefined;
- try {
- for (var _iterator = rows[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
- const cells = _step.value;
-
- if (!Array.isArray(cells)) {
- throw new TypeError('Table row data must be an array.');
- }
-
- if (cells.length !== columnNumber) {
- throw new Error('Table must have a consistent number of cells.');
- }
-
- var _iteratorNormalCompletion2 = true;
- var _didIteratorError2 = false;
- var _iteratorError2 = undefined;
-
- try {
- for (var _iterator2 = cells[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
- const cell = _step2.value;
+ for (const cells of rows) {
+ if (!Array.isArray(cells)) {
+ throw new TypeError('Table row data must be an array.');
+ }
- // eslint-disable-next-line no-control-regex
- if (/[\u0001-\u0006\u0008-\u0009\u000B-\u001A]/.test(cell)) {
- throw new Error('Table data must not contain control characters.');
- }
- }
- } catch (err) {
- _didIteratorError2 = true;
- _iteratorError2 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion2 && _iterator2.return != null) {
- _iterator2.return();
- }
- } finally {
- if (_didIteratorError2) {
- throw _iteratorError2;
- }
- }
- }
+ if (cells.length !== columnNumber) {
+ throw new Error('Table must have a consistent number of cells.');
}
- } catch (err) {
- _didIteratorError = true;
- _iteratorError = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion && _iterator.return != null) {
- _iterator.return();
- }
- } finally {
- if (_didIteratorError) {
- throw _iteratorError;
+
+ for (const cell of cells) {
+ // eslint-disable-next-line no-control-regex
+ if (/[\u0001-\u0006\u0008\u0009\u000B-\u001A]/.test(cell)) {
+ throw new Error('Table data must not contain control characters.');
}
}
}