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