nadesiko3 3.2.51 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/cnako3 +1 -1
- package/bin/cnako3.bat +1 -1
- package/demo/browsers.html +9 -10
- package/demo/flow.html +1 -0
- package/demo/turtle3.html +18 -17
- package/demo/turtle3d.html +1 -1
- package/demo/turtle3d2.html +1 -1
- package/doc/browsers.md +9 -10
- package/package.json +58 -57
- package/release/_hash.txt +57 -52
- package/release/_script-tags.txt +14 -13
- package/release/command.json +1 -1
- package/release/command.json.js +1 -1
- package/release/command_cnako3.json +1 -1
- package/release/command_list.json +1 -1
- package/release/editor.js +1 -1
- package/release/editor.js.LICENSE.txt +9 -12
- package/release/nako_gen_async.js +1 -1
- package/release/nako_gen_async.js.LICENSE.txt +10 -666
- package/release/plugin_caniuse.js +1 -1
- package/release/plugin_caniuse.js.LICENSE.txt +9 -425
- package/release/plugin_csv.js +1 -1
- package/release/plugin_csv.js.LICENSE.txt +3 -419
- package/release/plugin_datetime.js +1 -1
- package/release/plugin_datetime.js.LICENSE.txt +6 -530
- package/release/plugin_kansuji.js +1 -1
- package/release/plugin_kansuji.js.LICENSE.txt +3 -559
- package/release/plugin_markup.js +1 -1
- package/release/plugin_markup.js.LICENSE.txt +4 -420
- package/release/plugin_turtle.js +1 -1
- package/release/plugin_turtle.js.LICENSE.txt +12 -500
- package/release/plugin_webworker.js +1 -1
- package/release/plugin_webworker.js.LICENSE.txt +3 -563
- package/release/plugin_weykturtle3d.js +1 -0
- package/release/stats.json +1 -1
- package/release/version.js +1 -1
- package/release/version.js.LICENSE.txt +9 -12
- package/release/wnako3.js +1 -1
- package/release/wnako3.js.LICENSE.txt +1 -1
- package/release/wnako3webworker.js +1 -1
- package/release/wnako3webworker.js.LICENSE.txt +1 -1117
- package/src/browsers.mjs +1 -0
- package/src/browsers.txt +15 -15
- package/src/browsers_agents.mjs +1 -0
- package/src/cnako3.mjs +13 -0
- package/src/{cnako3.js → cnako3mod.mjs} +46 -53
- package/src/{commander_ja.js → commander_ja.mjs} +16 -11
- package/src/{enako3.js → enako3.mjs} +0 -0
- package/src/{era.json → era.mjs} +1 -1
- package/src/image_turtle-elephant.mjs +5 -0
- package/src/image_turtle-panda.mjs +5 -0
- package/src/image_turtle64.mjs +5 -0
- package/src/index.mjs +9 -0
- package/src/{nako3.js → nako3.mjs} +56 -52
- package/src/{nako3_assert.js → nako3_assert.mjs} +7 -6
- package/src/{nako3server.js → nako3server.mjs} +12 -5
- package/src/{nako_colors.js → nako_colors.mjs} +1 -1
- package/src/{nako_errors.js → nako_errors.mjs} +8 -18
- package/src/{nako_from_dncl.js → nako_from_dncl.mjs} +8 -6
- package/src/{nako_gen.js → nako_gen.mjs} +107 -89
- package/src/{nako_gen_async.js → nako_gen_async.mjs} +5 -8
- package/src/{nako_global.js → nako_global.mjs} +4 -5
- package/src/{nako_indent.js → nako_indent.mjs} +4 -4
- package/src/{nako_josi_list.js → nako_josi_list.mjs} +16 -14
- package/src/nako_lex_rules.mjs +244 -0
- package/src/{nako_lexer.js → nako_lexer.mjs} +7 -10
- package/src/{nako_logger.js → nako_logger.mjs} +3 -4
- package/src/{nako_parser3.js → nako_parser3.mjs} +5 -5
- package/src/{nako_parser_base.js → nako_parser_base.mjs} +1 -9
- package/src/{nako_parser_const.js → nako_parser_const.mjs} +2 -6
- package/src/{nako_prepare.js → nako_prepare.mjs} +1 -2
- package/src/{nako_reserved_words.js → nako_reserved_words.mjs} +1 -1
- package/src/{nako_source_mapping.js → nako_source_mapping.mjs} +4 -11
- package/src/{nako_test.js → nako_test.mjs} +0 -0
- package/src/nako_version.mjs +7 -0
- package/src/{plugin_browser.js → plugin_browser.mjs} +30 -30
- package/src/{plugin_browser_ajax.js → plugin_browser_ajax.mjs} +7 -7
- package/src/{plugin_browser_audio.js → plugin_browser_audio.mjs} +1 -1
- package/src/{plugin_browser_canvas.js → plugin_browser_canvas.mjs} +1 -1
- package/src/{plugin_browser_chart.js → plugin_browser_chart.mjs} +1 -1
- package/src/{plugin_browser_color.js → plugin_browser_color.mjs} +1 -1
- package/src/{plugin_browser_crypto.js → plugin_browser_crypto.mjs} +1 -1
- package/src/{plugin_browser_dialog.js → plugin_browser_dialog.mjs} +1 -1
- package/src/{plugin_browser_dom_basic.js → plugin_browser_dom_basic.mjs} +1 -1
- package/src/{plugin_browser_dom_event.js → plugin_browser_dom_event.mjs} +1 -1
- package/src/{plugin_browser_dom_parts.js → plugin_browser_dom_parts.mjs} +1 -1
- package/src/{plugin_browser_geolocation.js → plugin_browser_geolocation.mjs} +1 -1
- package/src/{plugin_browser_hotkey.js → plugin_browser_hotkey.mjs} +2 -2
- package/src/{plugin_browser_html.js → plugin_browser_html.mjs} +1 -1
- package/src/{plugin_browser_in_worker.js → plugin_browser_in_worker.mjs} +4 -4
- package/src/{plugin_browser_location.js → plugin_browser_location.mjs} +1 -1
- package/src/{plugin_browser_speech.js → plugin_browser_speech.mjs} +1 -1
- package/src/{plugin_browser_storage.js → plugin_browser_storage.mjs} +1 -1
- package/src/{plugin_browser_system.js → plugin_browser_system.mjs} +1 -1
- package/src/{plugin_browser_websocket.js → plugin_browser_websocket.mjs} +1 -1
- package/src/{plugin_caniuse.js → plugin_caniuse.mjs} +8 -3
- package/src/{plugin_csv.js → plugin_csv.mjs} +4 -5
- package/src/{plugin_datetime.js → plugin_datetime.mjs} +19 -26
- package/src/{plugin_express.js → plugin_express.mjs} +4 -3
- package/src/{plugin_kansuji.js → plugin_kansuji.mjs} +1 -1
- package/src/{plugin_keigo.js → plugin_keigo.mjs} +0 -0
- package/src/{plugin_markup.js → plugin_markup.mjs} +6 -6
- package/src/{plugin_math.js → plugin_math.mjs} +1 -4
- package/src/{plugin_node.js → plugin_node.mjs} +25 -57
- package/src/{plugin_promise.js → plugin_promise.mjs} +1 -3
- package/src/{plugin_system.js → plugin_system.mjs} +32 -15
- package/src/{plugin_test.js → plugin_test.mjs} +1 -3
- package/src/{plugin_turtle.js → plugin_turtle.mjs} +5 -4
- package/src/{plugin_webworker.js → plugin_webworker.mjs} +3 -3
- package/src/{plugin_weykturtle3d.js → plugin_weykturtle3d.mjs} +1 -3
- package/src/{plugin_worker.js → plugin_worker.mjs} +4 -1
- package/src/{wnako3.js → wnako3.mjs} +5 -5
- package/src/{wnako3_editor.js → wnako3_editor.mjs} +24 -18
- package/src/{wnako3webworker.js → wnako3webworker.mjs} +0 -0
- package/test/async/{async_basic_test.js → async_basic_test.mjs} +3 -4
- package/test/browser/karma.config.js +9 -0
- package/test/browser/test/plugin_browser_test.js +2 -2
- package/test/browser/test/plugin_turtle_test.js +2 -2
- package/test/browser/test/plugin_webworker_test.js +3 -3
- package/test/browser/test/require_test.js +2 -2
- package/test/common/{array_test.js → array_test.mjs} +3 -3
- package/test/common/{basic_test.js → basic_test.mjs} +3 -13
- package/test/common/{calc_test.js → calc_test.mjs} +2 -2
- package/test/common/{debug_test.js → debug_test.mjs} +2 -2
- package/test/common/{dncl_test.js → dncl_test.mjs} +3 -3
- package/test/common/{error_test.js → error_test.mjs} +2 -2
- package/test/common/{flow_test.js → flow_test.mjs} +2 -2
- package/test/common/{func_call.js → func_call.mjs} +3 -3
- package/test/common/{func_test.js → func_test.mjs} +2 -2
- package/test/common/{indent_test.js → indent_test.mjs} +3 -2
- package/test/common/{lex_test.js → lex_test.mjs} +2 -2
- package/test/common/{literal_test.js → literal_test.mjs} +3 -2
- package/test/common/{nako_logger_test.js → nako_logger_test.mjs} +3 -3
- package/test/common/{plugin_browser_test.js → plugin_browser_test.mjs} +4 -4
- package/test/common/{plugin_browser_ut_audio_test.js → plugin_browser_ut_audio_test.mjs} +4 -4
- package/test/common/{plugin_browser_ut_color_test.js → plugin_browser_ut_color_test.mjs} +2 -2
- package/test/common/{plugin_browser_ut_dialog_test.js → plugin_browser_ut_dialog_test.mjs} +3 -3
- package/test/common/{plugin_browser_ut_html_test.js → plugin_browser_ut_html_test.mjs} +2 -2
- package/test/common/{plugin_browser_ut_system_test.js → plugin_browser_ut_system_test.mjs} +2 -2
- package/test/common/{plugin_csv_test.js → plugin_csv_test.mjs} +3 -3
- package/test/common/{plugin_datetime_test.js → plugin_datetime_test.mjs} +4 -4
- package/test/common/{plugin_kansuji_test.js → plugin_kansuji_test.mjs} +3 -3
- package/test/common/{plugin_markup_test.js → plugin_markup_test.mjs} +3 -3
- package/test/common/{plugin_promise_test.js → plugin_promise_test.mjs} +2 -2
- package/test/common/{plugin_system_test.js → plugin_system_test.mjs} +2 -2
- package/test/common/{prepare_test.js → prepare_test.mjs} +2 -2
- package/test/common/{re_test.js → re_test.mjs} +2 -2
- package/test/common/{variable_scope_test.js → variable_scope_test.mjs} +2 -2
- package/test/karma.config.js +3 -3
- package/test/node/{async_test.js → async_test.mjs} +4 -2
- package/test/node/{commander_ja_test.js → commander_ja_test.mjs} +17 -12
- package/test/node/{error_message_test.js → error_message_test.mjs} +13 -10
- package/test/node/node_test.mjs +57 -0
- package/test/node/{plugin_browser_ut_ajax_test.js → plugin_browser_ut_ajax_test.mjs} +7 -5
- package/test/node/{plugin_browser_ut_location_test.js → plugin_browser_ut_location_test.mjs} +3 -3
- package/test/node/{plugin_markup_test.js → plugin_markup_test.mjs} +6 -7
- package/test/node/{plugin_math_test.js → plugin_math_test.mjs} +5 -5
- package/test/node/{plugin_node_test.js → plugin_node_test.mjs} +11 -7
- package/test/node/{plugin_test.js → plugin_test.mjs} +11 -5
- package/test/node/{require_nako3_test.js → require_nako3_test.mjs} +19 -12
- package/test/node/{side_effects_test.js → side_effects_test.mjs} +24 -13
- package/test/node/{wnako3_editor_test.js → wnako3_editor_test.mjs} +16 -9
- package/tools/nako3edit/index.nako3 +1 -1
- package/tools/nako3edit/{run.js → run.mjs} +8 -2
- package/src/index.js +0 -5
- package/src/nako_lex_rules.js +0 -260
- package/src/nako_version.js +0 -8
- package/test/node/node_test.js +0 -43
|
@@ -1,671 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
!*** ./src/nako_gen.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
/*!****************************!*\
|
|
6
|
-
!*** ./src/nako_errors.js ***!
|
|
7
|
-
\****************************/
|
|
1
|
+
/*!**************************!*\
|
|
2
|
+
!*** ./src/nako_gen.mjs ***!
|
|
3
|
+
\**************************/
|
|
8
4
|
|
|
9
5
|
/*!*****************************!*\
|
|
10
|
-
!*** ./src/
|
|
6
|
+
!*** ./src/nako_errors.mjs ***!
|
|
11
7
|
\*****************************/
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
!*** ./src/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/*!***********************************************!*\
|
|
18
|
-
!*** ./node_modules/core-js/internals/uid.js ***!
|
|
19
|
-
\***********************************************/
|
|
20
|
-
|
|
21
|
-
/*!************************************************!*\
|
|
22
|
-
!*** ./node_modules/core-js/internals/html.js ***!
|
|
23
|
-
\************************************************/
|
|
24
|
-
|
|
25
|
-
/*!************************************************!*\
|
|
26
|
-
!*** ./node_modules/core-js/internals/path.js ***!
|
|
27
|
-
\************************************************/
|
|
28
|
-
|
|
29
|
-
/*!************************************************!*\
|
|
30
|
-
!*** ./node_modules/core-js/modules/es.map.js ***!
|
|
31
|
-
\************************************************/
|
|
32
|
-
|
|
33
|
-
/*!************************************************!*\
|
|
34
|
-
!*** ./node_modules/core-js/modules/es.set.js ***!
|
|
35
|
-
\************************************************/
|
|
36
|
-
|
|
37
|
-
/*!*************************************************!*\
|
|
38
|
-
!*** ./node_modules/core-js/internals/fails.js ***!
|
|
39
|
-
\*************************************************/
|
|
40
|
-
|
|
41
|
-
/*!**************************************************!*\
|
|
42
|
-
!*** ./node_modules/core-js/internals/export.js ***!
|
|
43
|
-
\**************************************************/
|
|
44
|
-
|
|
45
|
-
/*!**************************************************!*\
|
|
46
|
-
!*** ./node_modules/core-js/internals/global.js ***!
|
|
47
|
-
\**************************************************/
|
|
48
|
-
|
|
49
|
-
/*!**************************************************!*\
|
|
50
|
-
!*** ./node_modules/core-js/internals/shared.js ***!
|
|
51
|
-
\**************************************************/
|
|
52
|
-
|
|
53
|
-
/*!***************************************************!*\
|
|
54
|
-
!*** ./node_modules/core-js/internals/classof.js ***!
|
|
55
|
-
\***************************************************/
|
|
56
|
-
|
|
57
|
-
/*!***************************************************!*\
|
|
58
|
-
!*** ./node_modules/core-js/internals/is-pure.js ***!
|
|
59
|
-
\***************************************************/
|
|
60
|
-
|
|
61
|
-
/*!***************************************************!*\
|
|
62
|
-
!*** ./node_modules/core-js/internals/iterate.js ***!
|
|
63
|
-
\***************************************************/
|
|
64
|
-
|
|
65
|
-
/*!***************************************************!*\
|
|
66
|
-
!*** ./node_modules/core-js/modules/es.symbol.js ***!
|
|
67
|
-
\***************************************************/
|
|
68
|
-
|
|
69
|
-
/*!****************************************************!*\
|
|
70
|
-
!*** ./node_modules/core-js/internals/freezing.js ***!
|
|
71
|
-
\****************************************************/
|
|
72
|
-
|
|
73
|
-
/*!****************************************************!*\
|
|
74
|
-
!*** ./node_modules/core-js/internals/is-array.js ***!
|
|
75
|
-
\****************************************************/
|
|
76
|
-
|
|
77
|
-
/*!****************************************************!*\
|
|
78
|
-
!*** ./node_modules/core-js/internals/own-keys.js ***!
|
|
79
|
-
\****************************************************/
|
|
80
|
-
|
|
81
|
-
/*!****************************************************!*\
|
|
82
|
-
!*** ./node_modules/core-js/internals/redefine.js ***!
|
|
83
|
-
\****************************************************/
|
|
84
|
-
|
|
85
|
-
/*!*****************************************************!*\
|
|
86
|
-
!*** ./node_modules/core-js/internals/an-object.js ***!
|
|
87
|
-
\*****************************************************/
|
|
88
|
-
|
|
89
|
-
/*!*****************************************************!*\
|
|
90
|
-
!*** ./node_modules/core-js/internals/is-forced.js ***!
|
|
91
|
-
\*****************************************************/
|
|
92
|
-
|
|
93
|
-
/*!*****************************************************!*\
|
|
94
|
-
!*** ./node_modules/core-js/internals/is-object.js ***!
|
|
95
|
-
\*****************************************************/
|
|
96
|
-
|
|
97
|
-
/*!*****************************************************!*\
|
|
98
|
-
!*** ./node_modules/core-js/internals/is-regexp.js ***!
|
|
99
|
-
\*****************************************************/
|
|
100
|
-
|
|
101
|
-
/*!*****************************************************!*\
|
|
102
|
-
!*** ./node_modules/core-js/internals/is-symbol.js ***!
|
|
103
|
-
\*****************************************************/
|
|
104
|
-
|
|
105
|
-
/*!*****************************************************!*\
|
|
106
|
-
!*** ./node_modules/core-js/internals/iterators.js ***!
|
|
107
|
-
\*****************************************************/
|
|
108
|
-
|
|
109
|
-
/*!*****************************************************!*\
|
|
110
|
-
!*** ./node_modules/core-js/internals/to-length.js ***!
|
|
111
|
-
\*****************************************************/
|
|
112
|
-
|
|
113
|
-
/*!*****************************************************!*\
|
|
114
|
-
!*** ./node_modules/core-js/internals/to-object.js ***!
|
|
115
|
-
\*****************************************************/
|
|
116
|
-
|
|
117
|
-
/*!*****************************************************!*\
|
|
118
|
-
!*** ./node_modules/core-js/internals/to-string.js ***!
|
|
119
|
-
\*****************************************************/
|
|
120
|
-
|
|
121
|
-
/*!******************************************************!*\
|
|
122
|
-
!*** ./node_modules/core-js/internals/a-callable.js ***!
|
|
123
|
-
\******************************************************/
|
|
124
|
-
|
|
125
|
-
/*!******************************************************!*\
|
|
126
|
-
!*** ./node_modules/core-js/internals/array-from.js ***!
|
|
127
|
-
\******************************************************/
|
|
128
|
-
|
|
129
|
-
/*!******************************************************!*\
|
|
130
|
-
!*** ./node_modules/core-js/internals/collection.js ***!
|
|
131
|
-
\******************************************************/
|
|
132
|
-
|
|
133
|
-
/*!******************************************************!*\
|
|
134
|
-
!*** ./node_modules/core-js/internals/get-method.js ***!
|
|
135
|
-
\******************************************************/
|
|
136
|
-
|
|
137
|
-
/*!******************************************************!*\
|
|
138
|
-
!*** ./node_modules/core-js/internals/set-global.js ***!
|
|
139
|
-
\******************************************************/
|
|
140
|
-
|
|
141
|
-
/*!******************************************************!*\
|
|
142
|
-
!*** ./node_modules/core-js/internals/shared-key.js ***!
|
|
143
|
-
\******************************************************/
|
|
144
|
-
|
|
145
|
-
/*!******************************************************!*\
|
|
146
|
-
!*** ./node_modules/core-js/modules/es.array.map.js ***!
|
|
147
|
-
\******************************************************/
|
|
148
|
-
|
|
149
|
-
/*!*******************************************************!*\
|
|
150
|
-
!*** ./node_modules/core-js/internals/an-instance.js ***!
|
|
151
|
-
\*******************************************************/
|
|
152
|
-
|
|
153
|
-
/*!*******************************************************!*\
|
|
154
|
-
!*** ./node_modules/core-js/internals/array-slice.js ***!
|
|
155
|
-
\*******************************************************/
|
|
156
|
-
|
|
157
|
-
/*!*******************************************************!*\
|
|
158
|
-
!*** ./node_modules/core-js/internals/classof-raw.js ***!
|
|
159
|
-
\*******************************************************/
|
|
160
|
-
|
|
161
|
-
/*!*******************************************************!*\
|
|
162
|
-
!*** ./node_modules/core-js/internals/descriptors.js ***!
|
|
163
|
-
\*******************************************************/
|
|
164
|
-
|
|
165
|
-
/*!*******************************************************!*\
|
|
166
|
-
!*** ./node_modules/core-js/internals/hidden-keys.js ***!
|
|
167
|
-
\*******************************************************/
|
|
168
|
-
|
|
169
|
-
/*!*******************************************************!*\
|
|
170
|
-
!*** ./node_modules/core-js/internals/is-callable.js ***!
|
|
171
|
-
\*******************************************************/
|
|
172
|
-
|
|
173
|
-
/*!*******************************************************!*\
|
|
174
|
-
!*** ./node_modules/core-js/internals/object-keys.js ***!
|
|
175
|
-
\*******************************************************/
|
|
176
|
-
|
|
177
|
-
/*!*******************************************************!*\
|
|
178
|
-
!*** ./node_modules/core-js/internals/regexp-exec.js ***!
|
|
179
|
-
\*******************************************************/
|
|
180
|
-
|
|
181
|
-
/*!*******************************************************!*\
|
|
182
|
-
!*** ./node_modules/core-js/internals/set-species.js ***!
|
|
183
|
-
\*******************************************************/
|
|
184
|
-
|
|
185
|
-
/*!*******************************************************!*\
|
|
186
|
-
!*** ./node_modules/core-js/modules/es.array.from.js ***!
|
|
187
|
-
\*******************************************************/
|
|
188
|
-
|
|
189
|
-
/*!*******************************************************!*\
|
|
190
|
-
!*** ./node_modules/core-js/modules/es.array.join.js ***!
|
|
191
|
-
\*******************************************************/
|
|
192
|
-
|
|
193
|
-
/*!********************************************************!*\
|
|
194
|
-
!*** ./node_modules/core-js/internals/get-built-in.js ***!
|
|
195
|
-
\********************************************************/
|
|
196
|
-
|
|
197
|
-
/*!********************************************************!*\
|
|
198
|
-
!*** ./node_modules/core-js/internals/get-iterator.js ***!
|
|
199
|
-
\********************************************************/
|
|
200
|
-
|
|
201
|
-
/*!********************************************************!*\
|
|
202
|
-
!*** ./node_modules/core-js/internals/not-a-regexp.js ***!
|
|
203
|
-
\********************************************************/
|
|
204
|
-
|
|
205
|
-
/*!********************************************************!*\
|
|
206
|
-
!*** ./node_modules/core-js/internals/redefine-all.js ***!
|
|
207
|
-
\********************************************************/
|
|
208
|
-
|
|
209
|
-
/*!********************************************************!*\
|
|
210
|
-
!*** ./node_modules/core-js/internals/regexp-flags.js ***!
|
|
211
|
-
\********************************************************/
|
|
212
|
-
|
|
213
|
-
/*!********************************************************!*\
|
|
214
|
-
!*** ./node_modules/core-js/internals/shared-store.js ***!
|
|
215
|
-
\********************************************************/
|
|
216
|
-
|
|
217
|
-
/*!********************************************************!*\
|
|
218
|
-
!*** ./node_modules/core-js/internals/to-primitive.js ***!
|
|
219
|
-
\********************************************************/
|
|
220
|
-
|
|
221
|
-
/*!********************************************************!*\
|
|
222
|
-
!*** ./node_modules/core-js/modules/es.array.slice.js ***!
|
|
223
|
-
\********************************************************/
|
|
224
|
-
|
|
225
|
-
/*!********************************************************!*\
|
|
226
|
-
!*** ./node_modules/core-js/modules/es.object.keys.js ***!
|
|
227
|
-
\********************************************************/
|
|
228
|
-
|
|
229
|
-
/*!********************************************************!*\
|
|
230
|
-
!*** ./node_modules/core-js/modules/es.regexp.exec.js ***!
|
|
231
|
-
\********************************************************/
|
|
232
|
-
|
|
233
|
-
/*!*********************************************************!*\
|
|
234
|
-
!*** ./node_modules/core-js/internals/a-constructor.js ***!
|
|
235
|
-
\*********************************************************/
|
|
236
|
-
|
|
237
|
-
/*!*********************************************************!*\
|
|
238
|
-
!*** ./node_modules/core-js/internals/dom-iterables.js ***!
|
|
239
|
-
\*********************************************************/
|
|
240
|
-
|
|
241
|
-
/*!*********************************************************!*\
|
|
242
|
-
!*** ./node_modules/core-js/internals/enum-bug-keys.js ***!
|
|
243
|
-
\*********************************************************/
|
|
244
|
-
|
|
245
|
-
/*!*********************************************************!*\
|
|
246
|
-
!*** ./node_modules/core-js/internals/function-bind.js ***!
|
|
247
|
-
\*********************************************************/
|
|
248
|
-
|
|
249
|
-
/*!*********************************************************!*\
|
|
250
|
-
!*** ./node_modules/core-js/internals/function-call.js ***!
|
|
251
|
-
\*********************************************************/
|
|
252
|
-
|
|
253
|
-
/*!*********************************************************!*\
|
|
254
|
-
!*** ./node_modules/core-js/internals/function-name.js ***!
|
|
255
|
-
\*********************************************************/
|
|
256
|
-
|
|
257
|
-
/*!*********************************************************!*\
|
|
258
|
-
!*** ./node_modules/core-js/internals/native-symbol.js ***!
|
|
259
|
-
\*********************************************************/
|
|
260
|
-
|
|
261
|
-
/*!*********************************************************!*\
|
|
262
|
-
!*** ./node_modules/core-js/internals/object-create.js ***!
|
|
263
|
-
\*********************************************************/
|
|
264
|
-
|
|
265
|
-
/*!*********************************************************!*\
|
|
266
|
-
!*** ./node_modules/core-js/internals/string-repeat.js ***!
|
|
267
|
-
\*********************************************************/
|
|
268
|
-
|
|
269
|
-
/*!*********************************************************!*\
|
|
270
|
-
!*** ./node_modules/core-js/internals/try-to-string.js ***!
|
|
271
|
-
\*********************************************************/
|
|
272
|
-
|
|
273
|
-
/*!*********************************************************!*\
|
|
274
|
-
!*** ./node_modules/core-js/modules/es.array.concat.js ***!
|
|
275
|
-
\*********************************************************/
|
|
276
|
-
|
|
277
|
-
/*!*********************************************************!*\
|
|
278
|
-
!*** ./node_modules/core-js/modules/es.array.filter.js ***!
|
|
279
|
-
\*********************************************************/
|
|
280
|
-
|
|
281
|
-
/*!*********************************************************!*\
|
|
282
|
-
!*** ./node_modules/core-js/modules/es.array.splice.js ***!
|
|
283
|
-
\*********************************************************/
|
|
284
|
-
|
|
285
|
-
/*!*********************************************************!*\
|
|
286
|
-
!*** ./node_modules/core-js/modules/es.string.split.js ***!
|
|
287
|
-
\*********************************************************/
|
|
288
|
-
|
|
289
|
-
/*!**********************************************************!*\
|
|
290
|
-
!*** ./node_modules/core-js/internals/array-for-each.js ***!
|
|
291
|
-
\**********************************************************/
|
|
292
|
-
|
|
293
|
-
/*!**********************************************************!*\
|
|
294
|
-
!*** ./node_modules/core-js/internals/array-includes.js ***!
|
|
295
|
-
\**********************************************************/
|
|
296
|
-
|
|
297
|
-
/*!**********************************************************!*\
|
|
298
|
-
!*** ./node_modules/core-js/internals/function-apply.js ***!
|
|
299
|
-
\**********************************************************/
|
|
300
|
-
|
|
301
|
-
/*!**********************************************************!*\
|
|
302
|
-
!*** ./node_modules/core-js/internals/ie8-dom-define.js ***!
|
|
303
|
-
\**********************************************************/
|
|
304
|
-
|
|
305
|
-
/*!**********************************************************!*\
|
|
306
|
-
!*** ./node_modules/core-js/internals/indexed-object.js ***!
|
|
307
|
-
\**********************************************************/
|
|
308
|
-
|
|
309
|
-
/*!**********************************************************!*\
|
|
310
|
-
!*** ./node_modules/core-js/internals/inspect-source.js ***!
|
|
311
|
-
\**********************************************************/
|
|
312
|
-
|
|
313
|
-
/*!**********************************************************!*\
|
|
314
|
-
!*** ./node_modules/core-js/internals/internal-state.js ***!
|
|
315
|
-
\**********************************************************/
|
|
316
|
-
|
|
317
|
-
/*!**********************************************************!*\
|
|
318
|
-
!*** ./node_modules/core-js/internals/is-constructor.js ***!
|
|
319
|
-
\**********************************************************/
|
|
320
|
-
|
|
321
|
-
/*!**********************************************************!*\
|
|
322
|
-
!*** ./node_modules/core-js/internals/iterator-close.js ***!
|
|
323
|
-
\**********************************************************/
|
|
324
|
-
|
|
325
|
-
/*!**********************************************************!*\
|
|
326
|
-
!*** ./node_modules/core-js/internals/iterators-core.js ***!
|
|
327
|
-
\**********************************************************/
|
|
328
|
-
|
|
329
|
-
/*!**********************************************************!*\
|
|
330
|
-
!*** ./node_modules/core-js/modules/es.function.name.js ***!
|
|
331
|
-
\**********************************************************/
|
|
332
|
-
|
|
333
|
-
/*!**********************************************************!*\
|
|
334
|
-
!*** ./node_modules/core-js/modules/es.string.repeat.js ***!
|
|
335
|
-
\**********************************************************/
|
|
336
|
-
|
|
337
|
-
/*!***********************************************************!*\
|
|
338
|
-
!*** ./node_modules/core-js/internals/array-iteration.js ***!
|
|
339
|
-
\***********************************************************/
|
|
340
|
-
|
|
341
|
-
/*!***********************************************************!*\
|
|
342
|
-
!*** ./node_modules/core-js/internals/create-property.js ***!
|
|
343
|
-
\***********************************************************/
|
|
344
|
-
|
|
345
|
-
/*!***********************************************************!*\
|
|
346
|
-
!*** ./node_modules/core-js/internals/define-iterator.js ***!
|
|
347
|
-
\***********************************************************/
|
|
348
|
-
|
|
349
|
-
/*!***********************************************************!*\
|
|
350
|
-
!*** ./node_modules/core-js/internals/native-weak-map.js ***!
|
|
351
|
-
\***********************************************************/
|
|
352
|
-
|
|
353
|
-
/*!***********************************************************!*\
|
|
354
|
-
!*** ./node_modules/core-js/internals/to-property-key.js ***!
|
|
355
|
-
\***********************************************************/
|
|
356
|
-
|
|
357
|
-
/*!***********************************************************!*\
|
|
358
|
-
!*** ./node_modules/core-js/modules/es.array.includes.js ***!
|
|
359
|
-
\***********************************************************/
|
|
360
|
-
|
|
361
|
-
/*!***********************************************************!*\
|
|
362
|
-
!*** ./node_modules/core-js/modules/es.array.iterator.js ***!
|
|
363
|
-
\***********************************************************/
|
|
364
|
-
|
|
365
|
-
/*!***********************************************************!*\
|
|
366
|
-
!*** ./node_modules/core-js/modules/es.string.replace.js ***!
|
|
367
|
-
\***********************************************************/
|
|
368
|
-
|
|
369
|
-
/*!************************************************************!*\
|
|
370
|
-
!*** ./node_modules/core-js/internals/get-substitution.js ***!
|
|
371
|
-
\************************************************************/
|
|
372
|
-
|
|
373
|
-
/*!************************************************************!*\
|
|
374
|
-
!*** ./node_modules/core-js/internals/has-own-property.js ***!
|
|
375
|
-
\************************************************************/
|
|
376
|
-
|
|
377
|
-
/*!************************************************************!*\
|
|
378
|
-
!*** ./node_modules/core-js/internals/object-to-string.js ***!
|
|
379
|
-
\************************************************************/
|
|
380
|
-
|
|
381
|
-
/*!************************************************************!*\
|
|
382
|
-
!*** ./node_modules/core-js/internals/string-multibyte.js ***!
|
|
383
|
-
\************************************************************/
|
|
384
|
-
|
|
385
|
-
/*!************************************************************!*\
|
|
386
|
-
!*** ./node_modules/core-js/modules/es.string.includes.js ***!
|
|
387
|
-
\************************************************************/
|
|
388
|
-
|
|
389
|
-
/*!************************************************************!*\
|
|
390
|
-
!*** ./node_modules/core-js/modules/es.string.iterator.js ***!
|
|
391
|
-
\************************************************************/
|
|
392
|
-
|
|
393
|
-
/*!************************************************************!*\
|
|
394
|
-
!*** ./node_modules/core-js/modules/es.symbol.iterator.js ***!
|
|
395
|
-
\************************************************************/
|
|
396
|
-
|
|
397
|
-
/*!*************************************************************!*\
|
|
398
|
-
!*** ./node_modules/core-js/internals/collection-strong.js ***!
|
|
399
|
-
\*************************************************************/
|
|
400
|
-
|
|
401
|
-
/*!*************************************************************!*\
|
|
402
|
-
!*** ./node_modules/core-js/internals/engine-user-agent.js ***!
|
|
403
|
-
\*************************************************************/
|
|
404
|
-
|
|
405
|
-
/*!*************************************************************!*\
|
|
406
|
-
!*** ./node_modules/core-js/internals/engine-v8-version.js ***!
|
|
407
|
-
\*************************************************************/
|
|
408
|
-
|
|
409
|
-
/*!*************************************************************!*\
|
|
410
|
-
!*** ./node_modules/core-js/internals/internal-metadata.js ***!
|
|
411
|
-
\*************************************************************/
|
|
412
|
-
|
|
413
|
-
/*!*************************************************************!*\
|
|
414
|
-
!*** ./node_modules/core-js/internals/set-to-string-tag.js ***!
|
|
415
|
-
\*************************************************************/
|
|
416
|
-
|
|
417
|
-
/*!*************************************************************!*\
|
|
418
|
-
!*** ./node_modules/core-js/internals/to-absolute-index.js ***!
|
|
419
|
-
\*************************************************************/
|
|
420
|
-
|
|
421
|
-
/*!*************************************************************!*\
|
|
422
|
-
!*** ./node_modules/core-js/internals/to-indexed-object.js ***!
|
|
423
|
-
\*************************************************************/
|
|
424
|
-
|
|
425
|
-
/*!*************************************************************!*\
|
|
426
|
-
!*** ./node_modules/core-js/internals/use-symbol-as-uid.js ***!
|
|
427
|
-
\*************************************************************/
|
|
428
|
-
|
|
429
|
-
/*!*************************************************************!*\
|
|
430
|
-
!*** ./node_modules/core-js/internals/well-known-symbol.js ***!
|
|
431
|
-
\*************************************************************/
|
|
432
|
-
|
|
433
|
-
/*!*************************************************************!*\
|
|
434
|
-
!*** ./node_modules/core-js/modules/es.object.to-string.js ***!
|
|
435
|
-
\*************************************************************/
|
|
436
|
-
|
|
437
|
-
/*!*************************************************************!*\
|
|
438
|
-
!*** ./node_modules/core-js/modules/es.regexp.to-string.js ***!
|
|
439
|
-
\*************************************************************/
|
|
440
|
-
|
|
441
|
-
/*!**************************************************************!*\
|
|
442
|
-
!*** ./node_modules/core-js/internals/add-to-unscopables.js ***!
|
|
443
|
-
\**************************************************************/
|
|
444
|
-
|
|
445
|
-
/*!**************************************************************!*\
|
|
446
|
-
!*** ./node_modules/core-js/internals/array-slice-simple.js ***!
|
|
447
|
-
\**************************************************************/
|
|
448
|
-
|
|
449
|
-
/*!**************************************************************!*\
|
|
450
|
-
!*** ./node_modules/core-js/modules/es.reflect.construct.js ***!
|
|
451
|
-
\**************************************************************/
|
|
452
|
-
|
|
453
|
-
/*!***************************************************************!*\
|
|
454
|
-
!*** ./node_modules/core-js/internals/get-iterator-method.js ***!
|
|
455
|
-
\***************************************************************/
|
|
456
|
-
|
|
457
|
-
/*!***************************************************************!*\
|
|
458
|
-
!*** ./node_modules/core-js/internals/inherit-if-required.js ***!
|
|
459
|
-
\***************************************************************/
|
|
460
|
-
|
|
461
|
-
/*!***************************************************************!*\
|
|
462
|
-
!*** ./node_modules/core-js/internals/species-constructor.js ***!
|
|
463
|
-
\***************************************************************/
|
|
464
|
-
|
|
465
|
-
/*!***************************************************************!*\
|
|
466
|
-
!*** ./node_modules/core-js/modules/es.symbol.description.js ***!
|
|
467
|
-
\***************************************************************/
|
|
468
|
-
|
|
469
|
-
/*!****************************************************************!*\
|
|
470
|
-
!*** ./node_modules/core-js/internals/a-possible-prototype.js ***!
|
|
471
|
-
\****************************************************************/
|
|
472
|
-
|
|
473
|
-
/*!****************************************************************!*\
|
|
474
|
-
!*** ./node_modules/core-js/internals/advance-string-index.js ***!
|
|
475
|
-
\****************************************************************/
|
|
476
|
-
|
|
477
|
-
/*!****************************************************************!*\
|
|
478
|
-
!*** ./node_modules/core-js/internals/array-species-create.js ***!
|
|
479
|
-
\****************************************************************/
|
|
480
|
-
|
|
481
|
-
/*!****************************************************************!*\
|
|
482
|
-
!*** ./node_modules/core-js/internals/function-bind-native.js ***!
|
|
483
|
-
\****************************************************************/
|
|
484
|
-
|
|
485
|
-
/*!****************************************************************!*\
|
|
486
|
-
!*** ./node_modules/core-js/internals/length-of-array-like.js ***!
|
|
487
|
-
\****************************************************************/
|
|
488
|
-
|
|
489
|
-
/*!****************************************************************!*\
|
|
490
|
-
!*** ./node_modules/core-js/internals/object-is-extensible.js ***!
|
|
491
|
-
\****************************************************************/
|
|
492
|
-
|
|
493
|
-
/*!****************************************************************!*\
|
|
494
|
-
!*** ./node_modules/core-js/internals/object-keys-internal.js ***!
|
|
495
|
-
\****************************************************************/
|
|
496
|
-
|
|
497
|
-
/*!****************************************************************!*\
|
|
498
|
-
!*** ./node_modules/core-js/internals/regexp-exec-abstract.js ***!
|
|
499
|
-
\****************************************************************/
|
|
500
|
-
|
|
501
|
-
/*!*****************************************************************!*\
|
|
502
|
-
!*** ./node_modules/core-js/internals/function-bind-context.js ***!
|
|
503
|
-
\*****************************************************************/
|
|
504
|
-
|
|
505
|
-
/*!*****************************************************************!*\
|
|
506
|
-
!*** ./node_modules/core-js/internals/function-uncurry-this.js ***!
|
|
507
|
-
\*****************************************************************/
|
|
508
|
-
|
|
509
|
-
/*!*****************************************************************!*\
|
|
510
|
-
!*** ./node_modules/core-js/internals/ordinary-to-primitive.js ***!
|
|
511
|
-
\*****************************************************************/
|
|
512
|
-
|
|
513
|
-
/*!*****************************************************************!*\
|
|
514
|
-
!*** ./node_modules/core-js/internals/regexp-sticky-helpers.js ***!
|
|
515
|
-
\*****************************************************************/
|
|
516
|
-
|
|
517
|
-
/*!*****************************************************************!*\
|
|
518
|
-
!*** ./node_modules/core-js/internals/to-string-tag-support.js ***!
|
|
519
|
-
\*****************************************************************/
|
|
520
|
-
|
|
521
|
-
/*!******************************************************************!*\
|
|
522
|
-
!*** ./node_modules/core-js/internals/array-method-is-strict.js ***!
|
|
523
|
-
\******************************************************************/
|
|
524
|
-
|
|
525
|
-
/*!******************************************************************!*\
|
|
526
|
-
!*** ./node_modules/core-js/internals/object-define-property.js ***!
|
|
527
|
-
\******************************************************************/
|
|
528
|
-
|
|
529
|
-
/*!******************************************************************!*\
|
|
530
|
-
!*** ./node_modules/core-js/internals/object-is-prototype-of.js ***!
|
|
531
|
-
\******************************************************************/
|
|
532
|
-
|
|
533
|
-
/*!******************************************************************!*\
|
|
534
|
-
!*** ./node_modules/core-js/internals/regexp-unsupported-ncg.js ***!
|
|
535
|
-
\******************************************************************/
|
|
536
|
-
|
|
537
|
-
/*!******************************************************************!*\
|
|
538
|
-
!*** ./node_modules/core-js/internals/to-integer-or-infinity.js ***!
|
|
539
|
-
\******************************************************************/
|
|
540
|
-
|
|
541
|
-
/*!*******************************************************************!*\
|
|
542
|
-
!*** ./node_modules/core-js/internals/correct-is-regexp-logic.js ***!
|
|
543
|
-
\*******************************************************************/
|
|
544
|
-
|
|
545
|
-
/*!*******************************************************************!*\
|
|
546
|
-
!*** ./node_modules/core-js/internals/document-create-element.js ***!
|
|
547
|
-
\*******************************************************************/
|
|
548
|
-
|
|
549
|
-
/*!*******************************************************************!*\
|
|
550
|
-
!*** ./node_modules/core-js/internals/object-get-prototype-of.js ***!
|
|
551
|
-
\*******************************************************************/
|
|
552
|
-
|
|
553
|
-
/*!*******************************************************************!*\
|
|
554
|
-
!*** ./node_modules/core-js/internals/object-set-prototype-of.js ***!
|
|
555
|
-
\*******************************************************************/
|
|
556
|
-
|
|
557
|
-
/*!*******************************************************************!*\
|
|
558
|
-
!*** ./node_modules/core-js/internals/v8-prototype-define-bug.js ***!
|
|
559
|
-
\*******************************************************************/
|
|
560
|
-
|
|
561
|
-
/*!********************************************************************!*\
|
|
562
|
-
!*** ./node_modules/core-js/internals/correct-prototype-getter.js ***!
|
|
563
|
-
\********************************************************************/
|
|
564
|
-
|
|
565
|
-
/*!********************************************************************!*\
|
|
566
|
-
!*** ./node_modules/core-js/internals/define-well-known-symbol.js ***!
|
|
567
|
-
\********************************************************************/
|
|
568
|
-
|
|
569
|
-
/*!********************************************************************!*\
|
|
570
|
-
!*** ./node_modules/core-js/internals/dom-token-list-prototype.js ***!
|
|
571
|
-
\********************************************************************/
|
|
572
|
-
|
|
573
|
-
/*!********************************************************************!*\
|
|
574
|
-
!*** ./node_modules/core-js/internals/is-array-iterator-method.js ***!
|
|
575
|
-
\********************************************************************/
|
|
576
|
-
|
|
577
|
-
/*!********************************************************************!*\
|
|
578
|
-
!*** ./node_modules/core-js/internals/object-define-properties.js ***!
|
|
579
|
-
\********************************************************************/
|
|
580
|
-
|
|
581
|
-
/*!********************************************************************!*\
|
|
582
|
-
!*** ./node_modules/core-js/internals/require-object-coercible.js ***!
|
|
583
|
-
\********************************************************************/
|
|
584
|
-
|
|
585
|
-
/*!********************************************************************!*\
|
|
586
|
-
!*** ./node_modules/core-js/modules/es.object.get-prototype-of.js ***!
|
|
587
|
-
\********************************************************************/
|
|
588
|
-
|
|
589
|
-
/*!*********************************************************************!*\
|
|
590
|
-
!*** ./node_modules/core-js/internals/array-species-constructor.js ***!
|
|
591
|
-
\*********************************************************************/
|
|
592
|
-
|
|
593
|
-
/*!*********************************************************************!*\
|
|
594
|
-
!*** ./node_modules/core-js/internals/well-known-symbol-wrapped.js ***!
|
|
595
|
-
\*********************************************************************/
|
|
596
|
-
|
|
597
|
-
/*!**********************************************************************!*\
|
|
598
|
-
!*** ./node_modules/core-js/internals/create-property-descriptor.js ***!
|
|
599
|
-
\**********************************************************************/
|
|
600
|
-
|
|
601
|
-
/*!**********************************************************************!*\
|
|
602
|
-
!*** ./node_modules/core-js/internals/regexp-unsupported-dot-all.js ***!
|
|
603
|
-
\**********************************************************************/
|
|
604
|
-
|
|
605
|
-
/*!**********************************************************************!*\
|
|
606
|
-
!*** ./node_modules/core-js/modules/web.dom-collections.for-each.js ***!
|
|
607
|
-
\**********************************************************************/
|
|
608
|
-
|
|
609
|
-
/*!**********************************************************************!*\
|
|
610
|
-
!*** ./node_modules/core-js/modules/web.dom-collections.iterator.js ***!
|
|
611
|
-
\**********************************************************************/
|
|
612
|
-
|
|
613
|
-
/*!***********************************************************************!*\
|
|
614
|
-
!*** ./node_modules/core-js/internals/array-buffer-non-extensible.js ***!
|
|
615
|
-
\***********************************************************************/
|
|
616
|
-
|
|
617
|
-
/*!***********************************************************************!*\
|
|
618
|
-
!*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
|
|
619
|
-
\***********************************************************************/
|
|
620
|
-
|
|
621
|
-
/*!***********************************************************************!*\
|
|
622
|
-
!*** ./node_modules/core-js/internals/create-iterator-constructor.js ***!
|
|
623
|
-
\***********************************************************************/
|
|
624
|
-
|
|
625
|
-
/*!*************************************************************************!*\
|
|
626
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-names.js ***!
|
|
627
|
-
\*************************************************************************/
|
|
628
|
-
|
|
629
|
-
/*!*************************************************************************!*\
|
|
630
|
-
!*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***!
|
|
631
|
-
\*************************************************************************/
|
|
632
|
-
|
|
633
|
-
/*!**************************************************************************!*\
|
|
634
|
-
!*** ./node_modules/core-js/internals/check-correctness-of-iteration.js ***!
|
|
635
|
-
\**************************************************************************/
|
|
636
|
-
|
|
637
|
-
/*!**************************************************************************!*\
|
|
638
|
-
!*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***!
|
|
639
|
-
\**************************************************************************/
|
|
640
|
-
|
|
641
|
-
/*!***************************************************************************!*\
|
|
642
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
|
|
643
|
-
\***************************************************************************/
|
|
644
|
-
|
|
645
|
-
/*!****************************************************************************!*\
|
|
646
|
-
!*** ./node_modules/core-js/internals/array-method-has-species-support.js ***!
|
|
647
|
-
\****************************************************************************/
|
|
648
|
-
|
|
649
|
-
/*!****************************************************************************!*\
|
|
650
|
-
!*** ./node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
|
|
651
|
-
\****************************************************************************/
|
|
652
|
-
|
|
653
|
-
/*!******************************************************************************!*\
|
|
654
|
-
!*** ./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js ***!
|
|
655
|
-
\******************************************************************************/
|
|
656
|
-
|
|
657
|
-
/*!******************************************************************************!*\
|
|
658
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
|
|
659
|
-
\******************************************************************************/
|
|
660
|
-
|
|
661
|
-
/*!*******************************************************************************!*\
|
|
662
|
-
!*** ./node_modules/core-js/modules/es.object.get-own-property-descriptor.js ***!
|
|
663
|
-
\*******************************************************************************/
|
|
664
|
-
|
|
665
|
-
/*!********************************************************************************!*\
|
|
666
|
-
!*** ./node_modules/core-js/modules/es.object.get-own-property-descriptors.js ***!
|
|
667
|
-
\********************************************************************************/
|
|
9
|
+
/*!******************************!*\
|
|
10
|
+
!*** ./src/nako_version.mjs ***!
|
|
11
|
+
\******************************/
|
|
668
12
|
|
|
669
|
-
|
|
670
|
-
!*** ./
|
|
671
|
-
|
|
13
|
+
/*!********************************!*\
|
|
14
|
+
!*** ./src/nako_gen_async.mjs ***!
|
|
15
|
+
\********************************/
|