mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 03:34:26 +03:00
cf65b2c601
* chore: add prettierrc * chore: apply format with prettier config * chore: eslint error fix
14 lines
397 B
TypeScript
14 lines
397 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', () => {
|
|
takeRightWhileToolkit([5, 4, 3, 2, 1], n => n < 4);
|
|
});
|
|
|
|
bench('lodash', () => {
|
|
takeRightWhileLodash([5, 4, 3, 2, 1], n => n < 4);
|
|
});
|
|
});
|