mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
import assert from 'node:assert';
|
|
import entriesIn from '../src/entriesIn';
|
|
import toPairsIn from '../src/toPairsIn';
|
|
|
|
describe('toPairsIn', () => {
|
|
it('should be aliased', () => {
|
|
assert.strictEqual(entriesIn, toPairsIn);
|
|
});
|
|
});
|