mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
8 lines
199 B
TypeScript
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 });
|
|
}
|