فهرست منبع

chore(common): Remove unused import

Michael Bromley 3 سال پیش
والد
کامیت
5957f9b4ef
1فایلهای تغییر یافته به همراه0 افزوده شده و 2 حذف شده
  1. 0 2
      packages/common/src/unique.ts

+ 0 - 2
packages/common/src/unique.ts

@@ -4,8 +4,6 @@
  * unless the `byKey` argument is supplied, in which case matching properties will
  * be used to check duplicates
  */
-import { isObject } from './shared-utils';
-
 export function unique<T>(arr: T[], byKey?: keyof T): T[] {
     if (byKey == null) {
         return Array.from(new Set(arr));