UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

23 lines (19 loc) 550 B
'use strict' const browsers = require('./browsers').browsers function unpackRegion(packed) { return Object.keys(packed).reduce((list, browser) => { let data = packed[browser] list[browsers[browser]] = Object.keys(data).reduce((memo, key) => { let stats = data[key] if (key === '_') { stats.split(' ').forEach(version => (memo[version] = null)) } else { memo[key] = stats } return memo }, {}) return list }, {}) } module.exports = unpackRegion module.exports.default = unpackRegion