We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be169c7 commit 34f44a1Copy full SHA for 34f44a1
1 file changed
src/event.ts
@@ -1,7 +1,5 @@
1
'use strict';
2
3
-import { randomUUID } from 'node:crypto';
4
-
5
import ICalAlarm, { type ICalAlarmData } from './alarm.ts';
6
import ICalAttendee, { type ICalAttendeeData } from './attendee.ts';
7
import ICalCalendar from './calendar.ts';
@@ -196,7 +194,7 @@ export default class ICalEvent {
196
194
description: null,
197
195
end: null,
198
floating: false,
199
- id: randomUUID(),
+ id: crypto.randomUUID(),
200
lastModified: null,
201
location: null,
202
organizer: null,
0 commit comments