UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

13 lines 265 B
import { mapValues } from './map-values.js'; test('mapValues', () => { expect(mapValues({ a: 1, b: 2, c: 3, }, (x) => x + 1)).toEqual({ a: 2, b: 3, c: 4, }); }); //# sourceMappingURL=map-values.test.js.map