blob: 548bb320aa820f4dfe9a3e888cd1cabcad958fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
console.log("Temporal");
console.log(Object.getOwnPropertyNames(Temporal).sort());
console.log("Temporal.Now");
console.log(Object.getOwnPropertyNames(Temporal.Now).sort());
console.log("Temporal.Instant.prototype");
console.log(Object.getOwnPropertyNames(Temporal.Instant.prototype).sort());
console.log("Temporal.ZonedDateTime.prototype");
console.log(
Object.getOwnPropertyNames(Temporal.ZonedDateTime.prototype).sort(),
);
console.log("Temporal.PlainDate.prototype");
console.log(Object.getOwnPropertyNames(Temporal.PlainDate.prototype).sort());
console.log("Temporal.PlainTime.prototype");
console.log(Object.getOwnPropertyNames(Temporal.PlainTime.prototype).sort());
console.log("Temporal.PlainDateTime.prototype");
console.log(
Object.getOwnPropertyNames(Temporal.PlainDateTime.prototype).sort(),
);
console.log("Temporal.PlainYearMonth.prototype");
console.log(
Object.getOwnPropertyNames(Temporal.PlainYearMonth.prototype).sort(),
);
console.log("Temporal.PlainMonthDay.prototype");
console.log(
Object.getOwnPropertyNames(Temporal.PlainMonthDay.prototype).sort(),
);
console.log("Temporal.Duration.prototype");
console.log(Object.getOwnPropertyNames(Temporal.Duration.prototype).sort());
|