UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

9 lines (8 loc) 232 B
export function getFirstArrayDuplicate(array) { const seenValues = new Set; for (const entry of array) { if (seenValues.has(entry)) return entry; seenValues.add(entry); } } //# sourceMappingURL=js.js.map