-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathtime.yaml
More file actions
39 lines (36 loc) · 881 Bytes
/
time.yaml
File metadata and controls
39 lines (36 loc) · 881 Bytes
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
38
39
spq: this::time
vector: true
input: |
"2023-10-19T23:11:20.999803Z"
"2015-03-05T16:07:13.154566+0100"
"2015-03-05T16:07:13.154566+01:00"
"1/2/2020"
"12 Feb 2006 19:17"
"1e18"::=named
"foo"
-1e9
1
null
1e200
error("bad")
{x:1}
[1,2]
|[1,2]|
|{"x":1}|
output: |
2023-10-19T23:11:20.999803Z
2015-03-05T15:07:13.154566Z
2015-03-05T15:07:13.154566Z
2020-01-02T00:00:00Z
2006-02-12T19:17:00Z
2001-09-09T01:46:40Z
error({message:"cannot cast to time",on:"foo"})
1969-12-31T23:59:59Z
1970-01-01T00:00:00.000000001Z
error({message:"cannot cast to time",on:null})
error({message:"cannot cast to time",on:1e+200})
error("bad")
error({message:"cannot cast to time",on:{x:1}})
error({message:"cannot cast to time",on:[1,2]})
error({message:"cannot cast to time",on:|[1,2]|})
error({message:"cannot cast to time",on:|{"x":1}|})