UNPKG

devextreme

Version:

JavaScript/TypeScript Component Suite for Responsive Web Development

29 lines (26 loc) 798 B
/** * DevExtreme (cjs/__internal/viz/funnel/tiling.js) * Version: 25.2.5 * Build date: Fri Feb 20 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); 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] } }