mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
import entriesIn from '../src/entriesIn';
|
|
import toPairsIn from '../src/toPairsIn';
|
|
|
|
describe('toPairsIn', () => {
|
|
it('should be aliased', () => {
|
|
expect(entriesIn).toBe(toPairsIn);
|
|
});
|
|
});
|