UNPKG

mapbox-gl

Version:
28 lines (23 loc) 713 B
function isPrimitive(value) { return value instanceof Number || value instanceof String || value instanceof Boolean; } // Turn jsonlint-lines-primitives objects into primitive objects export function unbundle(value) { if (isPrimitive(value)) { return value.valueOf(); } else { return value; } } export function deepUnbundle(value) { if (Array.isArray(value)) { return value.map(deepUnbundle); } else if (value instanceof Object && !isPrimitive(value)) { const unbundledValue = {}; for (const key in value) { unbundledValue[key] = deepUnbundle(value[key]); } return unbundledValue; } return unbundle(value); }