mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import assert from 'node:assert';
|
|
import eachRight from '../src/eachRight';
|
|
import forEachRight from '../src/forEachRight';
|
|
|
|
describe('forEachRight', () => {
|
|
it('should be aliased', () => {
|
|
assert.strictEqual(eachRight, forEachRight);
|
|
});
|
|
});
|