blob: 98353ac02c85cf5a14a402f3c3ed754d107d310c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _forEach2 = require('lodash/forEach');
var _forEach3 = _interopRequireDefault(_forEach2);
var _isArray2 = require('lodash/isArray');
var _isArray3 = _interopRequireDefault(_isArray2);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* @typedef {string} cell
*/
/**
* @typedef {cell[]} validateData~column
*/
/**
* @param {column[]} rows
* @returns {undefined}
*/
exports.default = function (rows) {
var columnNumber = undefined;
if (!(0, _isArray3.default)(rows)) {
throw new Error('Table data must be an array.');
}
if (rows.length === 0) {
throw new Error('Table must define at least one row.');
}
if (rows[0].length === 0) {
throw new Error('Table must define at least one column.');
}
columnNumber = rows[0].length;
(0, _forEach3.default)(rows, function (cells) {
if (!(0, _isArray3.default)(cells)) {
throw new Error('Table row data must be an array.');
}
if (cells.length !== columnNumber) {
throw new Error('Table must have a consistent number of cells.');
}
// @todo Make an exception for newline characters.
// @see https://github.com/gajus/table/issues/9
(0, _forEach3.default)(cells, function (cell) {
if (/[\x01-\x1A]/.test(cell)) {
throw new Error('Table data must not contain control characters.');
}
});
});
};
module.exports = exports['default'];
//# sourceMappingURL=validateTableData.js.map
|