mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
import eachRight from '../src/eachRight';
|
|
import forEachRight from '../src/forEachRight';
|
|
|
|
describe('forEachRight', () => {
|
|
it('should be aliased', () => {
|
|
expect(eachRight).toBe(forEachRight);
|
|
});
|
|
});
|