Ver Fonte

chore(common): Remove unused import

Michael Bromley há 3 anos atrás
pai
commit
5957f9b4ef
1 ficheiros alterados com 0 adições e 2 exclusões
  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));