From 67ea6bfe18c6b6f17d4348e3d3445de61bf4230d Mon Sep 17 00:00:00 2001 From: Sojin Park Date: Sun, 3 Nov 2024 23:49:50 +0900 Subject: [PATCH] fix: Fix build error --- src/compat/array/forEach.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat/array/forEach.ts b/src/compat/array/forEach.ts index 508bd5c90..42a50b001 100644 --- a/src/compat/array/forEach.ts +++ b/src/compat/array/forEach.ts @@ -1,5 +1,5 @@ +import { identity } from '../../function/identity'; import { range } from '../../math/range'; -import { identity } from '../_internal/identity'; import { isArrayLike } from '../predicate/isArrayLike'; /**