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