Browse Source

chore(common): Remove unused import

Michael Bromley 3 years ago
parent
commit
5957f9b4ef
1 changed files with 0 additions and 2 deletions
  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
  * unless the `byKey` argument is supplied, in which case matching properties will
  * be used to check duplicates
  * be used to check duplicates
  */
  */
-import { isObject } from './shared-utils';
-
 export function unique<T>(arr: T[], byKey?: keyof T): T[] {
 export function unique<T>(arr: T[], byKey?: keyof T): T[] {
     if (byKey == null) {
     if (byKey == null) {
         return Array.from(new Set(arr));
         return Array.from(new Set(arr));