nonespace
10/8/2018 - 4:03 PM

js tool

常用工具

export function objectMap(obj, fn) {
  return Object.keys(obj).map((key) => fn(obj[key], key))
}