Files
lodash/test/toPairsIn.spec.js
2023-09-16 22:59:56 -07:00

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);
});
});