mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _streamConfig = require('./schemas/streamConfig.json');
|
|
|
|
var _streamConfig2 = _interopRequireDefault(_streamConfig);
|
|
|
|
var _tv = require('tv4');
|
|
|
|
var _tv2 = _interopRequireDefault(_tv);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
/**
|
|
* @typedef {string} cell
|
|
*/
|
|
|
|
/**
|
|
* @typedef {cell[]} validateData~column
|
|
*/
|
|
|
|
/**
|
|
* @param {formatData~config} config
|
|
* @returns {undefined}
|
|
*/
|
|
|
|
exports.default = function () {
|
|
var config = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
|
|
|
|
var result = void 0;
|
|
|
|
result = _tv2.default.validateResult(config, _streamConfig2.default);
|
|
|
|
if (!result.valid) {
|
|
/* eslint-disable no-console */
|
|
console.log('config', config);
|
|
console.log('error', {
|
|
message: result.error.message,
|
|
params: result.error.params,
|
|
dataPath: result.error.dataPath,
|
|
schemaPath: result.error.schemaPath
|
|
});
|
|
/* eslint-enable no-console */
|
|
|
|
throw new Error('Invalid config.');
|
|
}
|
|
};
|
|
|
|
module.exports = exports['default'];
|
|
//# sourceMappingURL=validateStreamConfig.js.map
|
|
|