mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import assert from 'node:assert';
|
|
import each from '../src/each';
|
|
import forEach from '../src/forEach';
|
|
|
|
describe('forEach', () => {
|
|
it('should be aliased', () => {
|
|
assert.strictEqual(each, forEach);
|
|
});
|
|
});
|