Commit f487857 1 parent bf8eec8 commit f487857 Copy full SHA for f487857
File tree 1 file changed +5
-5
lines changed
website/cue/reference/remap/functions
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -51,39 +51,39 @@ remap: functions: to_timestamp: {
51
51
source : """
52
52
to_timestamp!("2020-10-21T16:00:00Z")
53
53
"""
54
- return : " 2020-10-21T16:00:00Z "
54
+ return : " 2020-10-21T16:00:00Z "
55
55
skip_test : true
56
56
},
57
57
{
58
58
title : " Coerce a unix timestamp (integer) to a timestamp "
59
59
source : """
60
60
to_timestamp!(1675968923)
61
61
"""
62
- return : " 2023-02-09T18:55:23Z "
62
+ return : " 2023-02-09T18:55:23Z "
63
63
skip_test : true
64
64
},
65
65
{
66
66
title : " Coerce a unix timestamp (float) to a timestamp "
67
67
source : """
68
68
to_timestamp!(1675968923.567)
69
69
"""
70
- return : " 2023-02-09T18:55:23.566999912Z "
70
+ return : " 2023-02-09T18:55:23.566999912Z "
71
71
skip_test : true
72
72
},
73
73
{
74
74
title : " Coerce a unix timestamp, in milliseconds, to a timestamp "
75
75
source : """
76
76
to_timestamp!(1676478566639, unit: "milliseconds")
77
77
"""
78
- return : " 2023-02-15T16:29:26.639Z "
78
+ return : " 2023-02-15T16:29:26.639Z "
79
79
skip_test : true
80
80
},
81
81
{
82
82
title : " Coerce a unix timestamp, in nanoseconds, to a timestamp "
83
83
source : """
84
84
to_timestamp!(1675968923012312311, unit: "nanoseconds")
85
85
"""
86
- return : " 2023-02-09T18:55:23.012312311Z "
86
+ return : " 2023-02-09T18:55:23.012312311Z "
87
87
skip_test : true
88
88
},
89
89
]
You can’t perform that action at this time.
0 commit comments