-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx.json
More file actions
314 lines (314 loc) · 7.9 KB
/
x.json
File metadata and controls
314 lines (314 loc) · 7.9 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
{
"name": "date",
"description": "Date for Chiχ",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/nodule/date.git"
},
"dependencies": {},
"nodes": [
{
"name": "create",
"ns": "date",
"title": "Create Date",
"description": "Creates a JavaScript Date instance that represents a single moment in time. Date objects are based on a time value that is the number of milliseconds since 1 January, 1970 UTC.",
"phrases": {
"active": "Creating Date"
},
"ports": {
"input": {
"in": {
"title": "Value",
"type": "number",
"description": "Integer value representing the number of milliseconds since 1 January 1970 00:00:00 UTC (Unix Epoch).",
"default": null
}
},
"output": {
"out": {
"title": "Date",
"type": "Date"
}
}
}
},
{
"name": "dateString",
"ns": "date",
"title": "Create Date",
"description": "String value representing a date.",
"phrases": {
"active": "Creating Date"
},
"ports": {
"input": {
"in": {
"title": "Value",
"type": "string",
"description": "The string should be in a format recognized by the Date.parse() method (IETF-compliant RFC 2822 timestamps and also a version of ISO8601).",
"default": null
}
},
"output": {
"out": {
"title": "Date",
"type": "Date"
}
}
}
},
{
"name": "getDate",
"ns": "date",
"title": "Get Date",
"async": true,
"description": "The day of the month (1-31) for the specified date according to local time.",
"phrases": {
"active": "Getting Month"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Month",
"type": "number",
"description": "The day of the month (1-31) for the specified date according to local time."
}
}
}
},
{
"name": "getDay",
"ns": "date",
"title": "Get Day",
"async": true,
"description": "The day of the week (0-6) for the specified date according to local time.",
"phrases": {
"active": "Getting Day"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Day",
"type": "number",
"description": "The day of the week (0-6) for the specified date according to local time."
}
}
}
},
{
"name": "getFullYear",
"ns": "date",
"title": "Get Full Year",
"async": true,
"description": "The year (4 digits for 4-digit years) of the specified date according to local time.",
"phrases": {
"active": "Getting Full Year"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Year",
"type": "number",
"description": "The year (4 digits for 4-digit years) of the specified date according to local time."
}
}
}
},
{
"name": "getHours",
"ns": "date",
"title": "Get Hours",
"async": true,
"description": "The hour (0-23) in the specified date according to local time.",
"phrases": {
"active": "Getting Hours"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Hour",
"type": "number",
"description": "The hour (0-23) in the specified date according to local time."
}
}
}
},
{
"name": "getMilliseconds",
"ns": "date",
"title": "Getting Milliseconds",
"async": true,
"description": "The milliseconds (0-999) in the specified date according to local time.",
"phrases": {
"active": "Getting Milliseconds"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Milliseconds",
"type": "number",
"description": "The milliseconds (0-999) in the specified date according to local time."
}
}
}
},
{
"name": "getMinutes",
"ns": "date",
"title": "Get Minutes",
"async": true,
"description": "The minutes (0-59) in the specified date according to local time.",
"phrases": {
"active": "Getting Minutes"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Minutes",
"type": "number",
"description": "The minutes (0-59) in the specified date according to local time."
}
}
}
},
{
"name": "getMonth",
"ns": "date",
"title": "Get Month",
"async": true,
"description": "The month (0-11) in the specified date according to local time.",
"phrases": {
"active": "Getting Month"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Month",
"type": "number",
"description": "The month (0-11) in the specified date according to local time."
}
}
}
},
{
"name": "getSeconds",
"ns": "date",
"title": "Get Seconds",
"async": true,
"description": "The seconds (0-59) in the specified date according to local time.",
"phrases": {
"active": "Getting Seconds"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Seconds",
"type": "number",
"description": "The seconds (0-59) in the specified date according to local time."
}
}
}
},
{
"name": "getTime",
"ns": "date",
"title": "Get Time",
"async": true,
"description": "The numeric value of the specified date as the number of milliseconds since January 1, 1970, 00:00:00 UTC (negative for prior times).",
"phrases": {
"active": "Getting Time"
},
"ports": {
"input": {
"in": {
"title": "Date",
"type": "Date",
"async": true
}
},
"output": {
"out": {
"title": "Time",
"type": "number",
"description": "The numeric value of the specified date as the number of milliseconds since January 1, 1970, 00:00:00 UTC (negative for prior times)."
}
}
}
},
{
"name": "now",
"ns": "date",
"title": "Now",
"description": "Outputs the number of milliseconds elapsed since January 1, 1970",
"phrases": {
"active": "Performing Date.now"
},
"ports": {
"input": {},
"output": {
"out": {
"title": "Now",
"type": "Date"
}
}
}
}
]
}