mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import assert from 'node:assert';
|
|
import entries from '../src/entries';
|
|
import toPairs from '../src/toPairs';
|
|
|
|
describe('toPairs', () => {
|
|
it('should be aliased', () => {
|
|
assert.strictEqual(entries, toPairs);
|
|
});
|
|
});
|