mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import assert from 'node:assert';
|
|
import extend from '../src/extend';
|
|
import assignIn from '../src/assignIn';
|
|
|
|
describe('assignIn', () => {
|
|
it('should be aliased', () => {
|
|
assert.strictEqual(extend, assignIn);
|
|
});
|
|
});
|