UNPKG

@thinql/parse

Version:
7 lines (5 loc) 174 B
const mapValues = (object, fn) => Object.keys(object).reduce((result, key) => { result[key] = fn(object[key], key, object) return result }, {}) export default mapValues