UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

25 lines (24 loc) 687 B
/** * DevExtreme (viz/sankey/data_validator.js) * Version: 20.1.7 * Build date: Tue Aug 25 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; var graphModule = require("./graph"); var validator = { validate: function(data, incidentOccurred) { var result = null; if (this._hasCycle(data)) { result = "E2006"; incidentOccurred("E2006") } return result }, _hasCycle: function(data) { return graphModule.struct.hasCycle(data) } }; module.exports = validator;