mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
14 lines
427 B
TypeScript
14 lines
427 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { takeRightWhile as takeRightWhileToolkit } from 'es-toolkit';
|
|
import { takeRightWhile as takeRightWhileLodash } from 'lodash';
|
|
|
|
describe('takeRightWhile', () => {
|
|
bench('es-toolkit/takeRightWhile', () => {
|
|
takeRightWhileToolkit([5, 4, 3, 2, 1], n => n < 4);
|
|
});
|
|
|
|
bench('lodash/takeRightWhile', () => {
|
|
takeRightWhileLodash([5, 4, 3, 2, 1], n => n < 4);
|
|
});
|
|
});
|