UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

26 lines (23 loc) 717 B
/** * DevExtreme (cjs/viz/funnel/tiling.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.addAlgorithm = addAlgorithm; exports.getAlgorithm = getAlgorithm; var _utils = require("../core/utils"); const algorithms = {}; let defaultAlgorithm; function getAlgorithm(name) { return algorithms[(0, _utils.normalizeEnum)(name)] || defaultAlgorithm } function addAlgorithm(name, callback, setDefault) { algorithms[name] = callback; if (setDefault) { defaultAlgorithm = algorithms[name] } }