UNPKG

highcharts

Version:
49 lines (48 loc) 965 B
/* * * * (c) 2014-2026 Highsoft AS * * Authors: Jon Arild Nygård / Øystein Moseng * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * * */ 'use strict'; /* * * * Namespace * * */ var TreemapUtilities; (function (TreemapUtilities) { /* * * * Declarations * * */ /* * * * Functions * * */ /** * @todo find correct name for this function. * @todo Similar to reduce, this function is likely redundant */ function recursive(item, func, context) { const next = func.call(context || this, item); if (next !== false) { recursive(next, func, context); } } TreemapUtilities.recursive = recursive; })(TreemapUtilities || (TreemapUtilities = {})); /* * * * Default Export * * */ export default TreemapUtilities;