Files
n8n-enterprise-unlocked/packages/frontend/editor-ui/src/polyfills.ts

8 lines
199 B
TypeScript

import 'array.prototype.tosorted';
import { v4 as uuid } from 'uuid';
// Polyfill crypto.randomUUID
if (!('randomUUID' in crypto)) {
Object.defineProperty(crypto, 'randomUUID', { value: uuid });
}