UNPKG

mapbox-gl

Version:
10 lines (8 loc) 276 B
// Turn jsonlint-lines-primitives objects into primitive objects module.exports = function unbundle(value) { if (value instanceof Number || value instanceof String || value instanceof Boolean) { return value.valueOf(); } else { return value; } };