UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

8 lines 222 B
export function mapValue(map, fn) { const result = Object.create(null); for (const key of Object.keys(map)) { result[key] = fn(map[key], key); } return result; } //# sourceMappingURL=mapValue.js.map