es-toolkit/benchmarks/set.bench.ts
novo b9432e1cfd
feat(set): add set function (#223)
* feat: set

* test: set

* chore: add doc and benchmark

* chore: fix benchmark name
2024-07-18 10:00:59 +09:00

20 lines
547 B
TypeScript

import { describe, bench } from 'vitest';
import { set } from 'es-toolkit';
import { set as lodashSet } from 'lodash';
describe('set', () => {
bench('es-toolkit/set-1', () => {
set({}, 'a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z', 1);
});
bench('es-toolkit/set-2', () => {
set({}, 'a[0][1][2][3][4][5][6]', 1);
});
bench('lodash/set-1', () => {
lodashSet({}, 'a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z', 1);
});
bench('lodash/set-2', () => {
lodashSet({}, 'a[0][1][2][3][4][5][6]', 1);
});
});