nadesiko3 3.2.52 → 3.3.3
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/runscript3.html +35 -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/plugin_weykturtle3d.js.LICENSE.txt +3 -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} +119 -101
- 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} +69 -57
- 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} +10 -20
- package/src/{nako_from_dncl.js → nako_from_dncl.mjs} +11 -8
- package/src/{nako_gen.js → nako_gen.mjs} +93 -87
- 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} +29 -25
- 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} +46 -8
- 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} +1 -1
- 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} +24 -14
- package/src/{wnako3_editor.js → wnako3_editor.mjs} +28 -22
- 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/html/daisyui/LICENSE +22 -0
- package/tools/nako3edit/html/daisyui/full.css +1 -0
- package/tools/nako3edit/html/daisyui/tailwind.min.css +1 -0
- package/tools/nako3edit/html/daisyui/version_2.14.1 +1 -0
- package/tools/nako3edit/html/edit.html +104 -19
- package/tools/nako3edit/html/files.html +84 -8
- package/tools/nako3edit/html/nako3edit.css +6 -7
- package/tools/nako3edit/index.nako3 +45 -6
- 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 +1 @@
|
|
|
1
|
-
!function(){var t={4305:function(t,r,n){function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}n(2526),n(1817),n(1539),n(2165),n(6992),n(8783),n(3948);var o={"初期化":{type:"func",josi:[],pure:!0,fn:function(t){}},"ブラウザ名変換表":{type:"const",value:n(1019)},"対応ブラウザ一覧取得":{type:"func",josi:[],fn:function(){return n(6276)}}};t.exports=o,"object"===("undefined"==typeof navigator?"undefined":e(navigator))&&e(navigator.nako3)&&navigator.nako3.addPluginObject("PluginCaniuse",o)},9662:function(t,r,n){var e=n(7854),o=n(614),i=n(6330),u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a function")}},6077:function(t,r,n){var e=n(7854),o=n(614),i=e.String,u=e.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw u("Can't set "+i(t)+" as a prototype")}},1223:function(t,r,n){var e=n(5112),o=n(30),i=n(3070),u=e("unscopables"),c=Array.prototype;null==c[u]&&i.f(c,u,{configurable:!0,value:o(null)}),t.exports=function(t){c[u][t]=!0}},9670:function(t,r,n){var e=n(7854),o=n(111),i=e.String,u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not an object")}},1318:function(t,r,n){var e=n(5656),o=n(1400),i=n(6244),u=function(t){return function(r,n,u){var c,a=e(r),f=i(a),s=o(u,f);if(t&&n!=n){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===n)return t||s||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},2092:function(t,r,n){var e=n(9974),o=n(1702),i=n(8361),u=n(7908),c=n(6244),a=n(5417),f=o([].push),s=function(t){var r=1==t,n=2==t,o=3==t,s=4==t,p=6==t,l=7==t,v=5==t||p;return function(y,b,d,g){for(var h,m,x=u(y),S=i(x),O=e(b,d),w=c(S),j=0,P=g||a,A=r?P(y,w):n||l?P(y,0):void 0;w>j;j++)if((v||j in S)&&(m=O(h=S[j],j,x),t))if(r)A[j]=m;else if(m)switch(t){case 3:return!0;case 5:return h;case 6:return j;case 2:f(A,h)}else switch(t){case 4:return!1;case 7:f(A,h)}return p?-1:o||s?s:A}};t.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1589:function(t,r,n){var e=n(7854),o=n(1400),i=n(6244),u=n(6135),c=e.Array,a=Math.max;t.exports=function(t,r,n){for(var e=i(t),f=o(r,e),s=o(void 0===n?e:n,e),p=c(a(s-f,0)),l=0;f<s;f++,l++)u(p,l,t[f]);return p.length=l,p}},206:function(t,r,n){var e=n(1702);t.exports=e([].slice)},7475:function(t,r,n){var e=n(7854),o=n(3157),i=n(4411),u=n(111),c=n(5112)("species"),a=e.Array;t.exports=function(t){var r;return o(t)&&(r=t.constructor,(i(r)&&(r===a||o(r.prototype))||u(r)&&null===(r=r[c]))&&(r=void 0)),void 0===r?a:r}},5417:function(t,r,n){var e=n(7475);t.exports=function(t,r){return new(e(t))(0===r?0:r)}},4326:function(t,r,n){var e=n(1702),o=e({}.toString),i=e("".slice);t.exports=function(t){return i(o(t),8,-1)}},648:function(t,r,n){var e=n(7854),o=n(1694),i=n(614),u=n(4326),c=n(5112)("toStringTag"),a=e.Object,f="Arguments"==u(function(){return arguments}());t.exports=o?u:function(t){var r,n,e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,r){try{return t[r]}catch(t){}}(r=a(t),c))?n:f?u(r):"Object"==(e=u(r))&&i(r.callee)?"Arguments":e}},9920:function(t,r,n){var e=n(2597),o=n(3887),i=n(1236),u=n(3070);t.exports=function(t,r,n){for(var c=o(r),a=u.f,f=i.f,s=0;s<c.length;s++){var p=c[s];e(t,p)||n&&e(n,p)||a(t,p,f(r,p))}}},8544:function(t,r,n){var e=n(7293);t.exports=!e((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4994:function(t,r,n){"use strict";var e=n(3383).IteratorPrototype,o=n(30),i=n(9114),u=n(8003),c=n(7497),a=function(){return this};t.exports=function(t,r,n,f){var s=r+" Iterator";return t.prototype=o(e,{next:i(+!f,n)}),u(t,s,!1,!0),c[s]=a,t}},8880:function(t,r,n){var e=n(9781),o=n(3070),i=n(9114);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},9114:function(t){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},6135:function(t,r,n){"use strict";var e=n(4948),o=n(3070),i=n(9114);t.exports=function(t,r,n){var u=e(r);u in t?o.f(t,u,i(0,n)):t[u]=n}},654:function(t,r,n){"use strict";var e=n(2109),o=n(6916),i=n(1913),u=n(6530),c=n(614),a=n(4994),f=n(9518),s=n(7674),p=n(8003),l=n(8880),v=n(1320),y=n(5112),b=n(7497),d=n(3383),g=u.PROPER,h=u.CONFIGURABLE,m=d.IteratorPrototype,x=d.BUGGY_SAFARI_ITERATORS,S=y("iterator"),O="keys",w="values",j="entries",P=function(){return this};t.exports=function(t,r,n,u,y,d,A){a(n,r,u);var T,_,E,L=function(t){if(t===y&&M)return M;if(!x&&t in F)return F[t];switch(t){case O:case w:case j:return function(){return new n(this,t)}}return function(){return new n(this)}},I=r+" Iterator",k=!1,F=t.prototype,C=F[S]||F["@@iterator"]||y&&F[y],M=!x&&C||L(y),R="Array"==r&&F.entries||C;if(R&&(T=f(R.call(new t)))!==Object.prototype&&T.next&&(i||f(T)===m||(s?s(T,m):c(T[S])||v(T,S,P)),p(T,I,!0,!0),i&&(b[I]=P)),g&&y==w&&C&&C.name!==w&&(!i&&h?l(F,"name",w):(k=!0,M=function(){return o(C,this)})),y)if(_={values:L(w),keys:d?M:L(O),entries:L(j)},A)for(E in _)(x||k||!(E in F))&&v(F,E,_[E]);else e({target:r,proto:!0,forced:x||k},_);return i&&!A||F[S]===M||v(F,S,M,{name:y}),b[r]=M,_}},7235:function(t,r,n){var e=n(857),o=n(2597),i=n(6061),u=n(3070).f;t.exports=function(t){var r=e.Symbol||(e.Symbol={});o(r,t)||u(r,t,{value:i.f(t)})}},9781:function(t,r,n){var e=n(7293);t.exports=!e((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,r,n){var e=n(7854),o=n(111),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(t,r,n){var e=n(317)("span").classList,o=e&&e.constructor&&e.constructor.prototype;t.exports=o===Object.prototype?void 0:o},8113:function(t,r,n){var e=n(5005);t.exports=e("navigator","userAgent")||""},7392:function(t,r,n){var e,o,i=n(7854),u=n(8113),c=i.process,a=i.Deno,f=c&&c.versions||a&&a.version,s=f&&f.v8;s&&(o=(e=s.split("."))[0]>0&&e[0]<4?1:+(e[0]+e[1])),!o&&u&&(!(e=u.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=u.match(/Chrome\/(\d+)/))&&(o=+e[1]),t.exports=o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,r,n){var e=n(7854),o=n(1236).f,i=n(8880),u=n(1320),c=n(3505),a=n(9920),f=n(4705);t.exports=function(t,r){var n,s,p,l,v,y=t.target,b=t.global,d=t.stat;if(n=b?e:d?e[y]||c(y,{}):(e[y]||{}).prototype)for(s in r){if(l=r[s],p=t.noTargetGet?(v=o(n,s))&&v.value:n[s],!f(b?s:y+(d?".":"#")+s,t.forced)&&void 0!==p){if(typeof l==typeof p)continue;a(l,p)}(t.sham||p&&p.sham)&&i(l,"sham",!0),u(n,s,l,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},2104:function(t,r,n){var e=n(4374),o=Function.prototype,i=o.apply,u=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(e?u.bind(i):function(){return u.apply(i,arguments)})},9974:function(t,r,n){var e=n(1702),o=n(9662),i=n(4374),u=e(e.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?u(t,r):function(){return t.apply(r,arguments)}}},4374:function(t,r,n){var e=n(7293);t.exports=!e((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},6916:function(t,r,n){var e=n(4374),o=Function.prototype.call;t.exports=e?o.bind(o):function(){return o.apply(o,arguments)}},6530:function(t,r,n){var e=n(9781),o=n(2597),i=Function.prototype,u=e&&Object.getOwnPropertyDescriptor,c=o(i,"name"),a=c&&"something"===function(){}.name,f=c&&(!e||e&&u(i,"name").configurable);t.exports={EXISTS:c,PROPER:a,CONFIGURABLE:f}},1702:function(t,r,n){var e=n(4374),o=Function.prototype,i=o.bind,u=o.call,c=e&&i.bind(u,u);t.exports=e?function(t){return t&&c(t)}:function(t){return t&&function(){return u.apply(t,arguments)}}},5005:function(t,r,n){var e=n(7854),o=n(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(e[t]):e[t]&&e[t][r]}},8173:function(t,r,n){var e=n(9662);t.exports=function(t,r){var n=t[r];return null==n?void 0:e(n)}},7854:function(t,r,n){var e=function(t){return t&&t.Math==Math&&t};t.exports=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},2597:function(t,r,n){var e=n(1702),o=n(7908),i=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},3501:function(t){t.exports={}},490:function(t,r,n){var e=n(5005);t.exports=e("document","documentElement")},4664:function(t,r,n){var e=n(9781),o=n(7293),i=n(317);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,r,n){var e=n(7854),o=n(1702),i=n(7293),u=n(4326),c=e.Object,a=o("".split);t.exports=i((function(){return!c("z").propertyIsEnumerable(0)}))?function(t){return"String"==u(t)?a(t,""):c(t)}:c},2788:function(t,r,n){var e=n(1702),o=n(614),i=n(5465),u=e(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return u(t)}),t.exports=i.inspectSource},9909:function(t,r,n){var e,o,i,u=n(8536),c=n(7854),a=n(1702),f=n(111),s=n(8880),p=n(2597),l=n(5465),v=n(6200),y=n(3501),b="Object already initialized",d=c.TypeError,g=c.WeakMap;if(u||l.state){var h=l.state||(l.state=new g),m=a(h.get),x=a(h.has),S=a(h.set);e=function(t,r){if(x(h,t))throw new d(b);return r.facade=t,S(h,t,r),r},o=function(t){return m(h,t)||{}},i=function(t){return x(h,t)}}else{var O=v("state");y[O]=!0,e=function(t,r){if(p(t,O))throw new d(b);return r.facade=t,s(t,O,r),r},o=function(t){return p(t,O)?t[O]:{}},i=function(t){return p(t,O)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!f(r)||(n=o(r)).type!==t)throw d("Incompatible receiver, "+t+" required");return n}}}},3157:function(t,r,n){var e=n(4326);t.exports=Array.isArray||function(t){return"Array"==e(t)}},614:function(t){t.exports=function(t){return"function"==typeof t}},4411:function(t,r,n){var e=n(1702),o=n(7293),i=n(614),u=n(648),c=n(5005),a=n(2788),f=function(){},s=[],p=c("Reflect","construct"),l=/^\s*(?:class|function)\b/,v=e(l.exec),y=!l.exec(f),b=function(t){if(!i(t))return!1;try{return p(f,s,t),!0}catch(t){return!1}},d=function(t){if(!i(t))return!1;switch(u(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return y||!!v(l,a(t))}catch(t){return!0}};d.sham=!0,t.exports=!p||o((function(){var t;return b(b.call)||!b(Object)||!b((function(){t=!0}))||t}))?d:b},4705:function(t,r,n){var e=n(7293),o=n(614),i=/#|\.prototype\./,u=function(t,r){var n=a[c(t)];return n==s||n!=f&&(o(r)?e(r):!!r)},c=u.normalize=function(t){return String(t).replace(i,".").toLowerCase()},a=u.data={},f=u.NATIVE="N",s=u.POLYFILL="P";t.exports=u},111:function(t,r,n){var e=n(614);t.exports=function(t){return"object"==typeof t?null!==t:e(t)}},1913:function(t){t.exports=!1},2190:function(t,r,n){var e=n(7854),o=n(5005),i=n(614),u=n(7976),c=n(3307),a=e.Object;t.exports=c?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return i(r)&&u(r.prototype,a(t))}},3383:function(t,r,n){"use strict";var e,o,i,u=n(7293),c=n(614),a=n(30),f=n(9518),s=n(1320),p=n(5112),l=n(1913),v=p("iterator"),y=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(e=o):y=!0),null==e||u((function(){var t={};return e[v].call(t)!==t}))?e={}:l&&(e=a(e)),c(e[v])||s(e,v,(function(){return this})),t.exports={IteratorPrototype:e,BUGGY_SAFARI_ITERATORS:y}},7497:function(t){t.exports={}},6244:function(t,r,n){var e=n(7466);t.exports=function(t){return e(t.length)}},133:function(t,r,n){var e=n(7392),o=n(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&e&&e<41}))},8536:function(t,r,n){var e=n(7854),o=n(614),i=n(2788),u=e.WeakMap;t.exports=o(u)&&/native code/.test(i(u))},30:function(t,r,n){var e,o=n(9670),i=n(6048),u=n(748),c=n(3501),a=n(490),f=n(317),s=n(6200),p=s("IE_PROTO"),l=function(){},v=function(t){return"<script>"+t+"</"+"script>"},y=function(t){t.write(v("")),t.close();var r=t.parentWindow.Object;return t=null,r},b=function(){try{e=new ActiveXObject("htmlfile")}catch(t){}var t,r;b="undefined"!=typeof document?document.domain&&e?y(e):((r=f("iframe")).style.display="none",a.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(v("document.F=Object")),t.close(),t.F):y(e);for(var n=u.length;n--;)delete b.prototype[u[n]];return b()};c[p]=!0,t.exports=Object.create||function(t,r){var n;return null!==t?(l.prototype=o(t),n=new l,l.prototype=null,n[p]=t):n=b(),void 0===r?n:i.f(n,r)}},6048:function(t,r,n){var e=n(9781),o=n(3353),i=n(3070),u=n(9670),c=n(5656),a=n(1956);r.f=e&&!o?Object.defineProperties:function(t,r){u(t);for(var n,e=c(r),o=a(r),f=o.length,s=0;f>s;)i.f(t,n=o[s++],e[n]);return t}},3070:function(t,r,n){var e=n(7854),o=n(9781),i=n(4664),u=n(3353),c=n(9670),a=n(4948),f=e.TypeError,s=Object.defineProperty,p=Object.getOwnPropertyDescriptor,l="enumerable",v="configurable",y="writable";r.f=o?u?function(t,r,n){if(c(t),r=a(r),c(n),"function"==typeof t&&"prototype"===r&&"value"in n&&y in n&&!n.writable){var e=p(t,r);e&&e.writable&&(t[r]=n.value,n={configurable:v in n?n.configurable:e.configurable,enumerable:l in n?n.enumerable:e.enumerable,writable:!1})}return s(t,r,n)}:s:function(t,r,n){if(c(t),r=a(r),c(n),i)try{return s(t,r,n)}catch(t){}if("get"in n||"set"in n)throw f("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},1236:function(t,r,n){var e=n(9781),o=n(6916),i=n(5296),u=n(9114),c=n(5656),a=n(4948),f=n(2597),s=n(4664),p=Object.getOwnPropertyDescriptor;r.f=e?p:function(t,r){if(t=c(t),r=a(r),s)try{return p(t,r)}catch(t){}if(f(t,r))return u(!o(i.f,t,r),t[r])}},1156:function(t,r,n){var e=n(4326),o=n(5656),i=n(8006).f,u=n(1589),c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return c&&"Window"==e(t)?function(t){try{return i(t)}catch(t){return u(c)}}(t):i(o(t))}},8006:function(t,r,n){var e=n(6324),o=n(748).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},5181:function(t,r){r.f=Object.getOwnPropertySymbols},9518:function(t,r,n){var e=n(7854),o=n(2597),i=n(614),u=n(7908),c=n(6200),a=n(8544),f=c("IE_PROTO"),s=e.Object,p=s.prototype;t.exports=a?s.getPrototypeOf:function(t){var r=u(t);if(o(r,f))return r[f];var n=r.constructor;return i(n)&&r instanceof n?n.prototype:r instanceof s?p:null}},7976:function(t,r,n){var e=n(1702);t.exports=e({}.isPrototypeOf)},6324:function(t,r,n){var e=n(1702),o=n(2597),i=n(5656),u=n(1318).indexOf,c=n(3501),a=e([].push);t.exports=function(t,r){var n,e=i(t),f=0,s=[];for(n in e)!o(c,n)&&o(e,n)&&a(s,n);for(;r.length>f;)o(e,n=r[f++])&&(~u(s,n)||a(s,n));return s}},1956:function(t,r,n){var e=n(6324),o=n(748);t.exports=Object.keys||function(t){return e(t,o)}},5296:function(t,r){"use strict";var n={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,o=e&&!n.call({1:2},1);r.f=o?function(t){var r=e(this,t);return!!r&&r.enumerable}:n},7674:function(t,r,n){var e=n(1702),o=n(9670),i=n(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,n={};try{(t=e(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),r=n instanceof Array}catch(t){}return function(n,e){return o(n),i(e),r?t(n,e):n.__proto__=e,n}}():void 0)},288:function(t,r,n){"use strict";var e=n(1694),o=n(648);t.exports=e?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,r,n){var e=n(7854),o=n(6916),i=n(614),u=n(111),c=e.TypeError;t.exports=function(t,r){var n,e;if("string"===r&&i(n=t.toString)&&!u(e=o(n,t)))return e;if(i(n=t.valueOf)&&!u(e=o(n,t)))return e;if("string"!==r&&i(n=t.toString)&&!u(e=o(n,t)))return e;throw c("Can't convert object to primitive value")}},3887:function(t,r,n){var e=n(5005),o=n(1702),i=n(8006),u=n(5181),c=n(9670),a=o([].concat);t.exports=e("Reflect","ownKeys")||function(t){var r=i.f(c(t)),n=u.f;return n?a(r,n(t)):r}},857:function(t,r,n){var e=n(7854);t.exports=e},1320:function(t,r,n){var e=n(7854),o=n(614),i=n(2597),u=n(8880),c=n(3505),a=n(2788),f=n(9909),s=n(6530).CONFIGURABLE,p=f.get,l=f.enforce,v=String(String).split("String");(t.exports=function(t,r,n,a){var f,p=!!a&&!!a.unsafe,y=!!a&&!!a.enumerable,b=!!a&&!!a.noTargetGet,d=a&&void 0!==a.name?a.name:r;o(n)&&("Symbol("===String(d).slice(0,7)&&(d="["+String(d).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(n,"name")||s&&n.name!==d)&&u(n,"name",d),(f=l(n)).source||(f.source=v.join("string"==typeof d?d:""))),t!==e?(p?!b&&t[r]&&(y=!0):delete t[r],y?t[r]=n:u(t,r,n)):y?t[r]=n:c(r,n)})(Function.prototype,"toString",(function(){return o(this)&&p(this).source||a(this)}))},4488:function(t,r,n){var e=n(7854).TypeError;t.exports=function(t){if(null==t)throw e("Can't call method on "+t);return t}},3505:function(t,r,n){var e=n(7854),o=Object.defineProperty;t.exports=function(t,r){try{o(e,t,{value:r,configurable:!0,writable:!0})}catch(n){e[t]=r}return r}},8003:function(t,r,n){var e=n(3070).f,o=n(2597),i=n(5112)("toStringTag");t.exports=function(t,r,n){t&&!n&&(t=t.prototype),t&&!o(t,i)&&e(t,i,{configurable:!0,value:r})}},6200:function(t,r,n){var e=n(2309),o=n(9711),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,r,n){var e=n(7854),o=n(3505),i="__core-js_shared__",u=e[i]||o(i,{});t.exports=u},2309:function(t,r,n){var e=n(1913),o=n(5465);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.21.0",mode:e?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.21.0/LICENSE",source:"https://github.com/zloirock/core-js"})},8710:function(t,r,n){var e=n(1702),o=n(9303),i=n(1340),u=n(4488),c=e("".charAt),a=e("".charCodeAt),f=e("".slice),s=function(t){return function(r,n){var e,s,p=i(u(r)),l=o(n),v=p.length;return l<0||l>=v?t?"":void 0:(e=a(p,l))<55296||e>56319||l+1===v||(s=a(p,l+1))<56320||s>57343?t?c(p,l):e:t?f(p,l,l+2):s-56320+(e-55296<<10)+65536}};t.exports={codeAt:s(!1),charAt:s(!0)}},1400:function(t,r,n){var e=n(9303),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return n<0?o(n+r,0):i(n,r)}},5656:function(t,r,n){var e=n(8361),o=n(4488);t.exports=function(t){return e(o(t))}},9303:function(t){var r=Math.ceil,n=Math.floor;t.exports=function(t){var e=+t;return e!=e||0===e?0:(e>0?n:r)(e)}},7466:function(t,r,n){var e=n(9303),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},7908:function(t,r,n){var e=n(7854),o=n(4488),i=e.Object;t.exports=function(t){return i(o(t))}},7593:function(t,r,n){var e=n(7854),o=n(6916),i=n(111),u=n(2190),c=n(8173),a=n(2140),f=n(5112),s=e.TypeError,p=f("toPrimitive");t.exports=function(t,r){if(!i(t)||u(t))return t;var n,e=c(t,p);if(e){if(void 0===r&&(r="default"),n=o(e,t,r),!i(n)||u(n))return n;throw s("Can't convert object to primitive value")}return void 0===r&&(r="number"),a(t,r)}},4948:function(t,r,n){var e=n(7593),o=n(2190);t.exports=function(t){var r=e(t,"string");return o(r)?r:r+""}},1694:function(t,r,n){var e={};e[n(5112)("toStringTag")]="z",t.exports="[object z]"===String(e)},1340:function(t,r,n){var e=n(7854),o=n(648),i=e.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return i(t)}},6330:function(t,r,n){var e=n(7854).String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},9711:function(t,r,n){var e=n(1702),o=0,i=Math.random(),u=e(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+u(++o+i,36)}},3307:function(t,r,n){var e=n(133);t.exports=e&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:function(t,r,n){var e=n(9781),o=n(7293);t.exports=e&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},6061:function(t,r,n){var e=n(5112);r.f=e},5112:function(t,r,n){var e=n(7854),o=n(2309),i=n(2597),u=n(9711),c=n(133),a=n(3307),f=o("wks"),s=e.Symbol,p=s&&s.for,l=a?s:s&&s.withoutSetter||u;t.exports=function(t){if(!i(f,t)||!c&&"string"!=typeof f[t]){var r="Symbol."+t;c&&i(s,t)?f[t]=s[t]:f[t]=a&&p?p(r):l(r)}return f[t]}},6992:function(t,r,n){"use strict";var e=n(5656),o=n(1223),i=n(7497),u=n(9909),c=n(3070).f,a=n(654),f=n(1913),s=n(9781),p="Array Iterator",l=u.set,v=u.getterFor(p);t.exports=a(Array,"Array",(function(t,r){l(this,{type:p,target:e(t),index:0,kind:r})}),(function(){var t=v(this),r=t.target,n=t.kind,e=t.index++;return!r||e>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:e,done:!1}:"values"==n?{value:r[e],done:!1}:{value:[e,r[e]],done:!1}}),"values");var y=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&s&&"values"!==y.name)try{c(y,"name",{value:"values"})}catch(t){}},1539:function(t,r,n){var e=n(1694),o=n(1320),i=n(288);e||o(Object.prototype,"toString",i,{unsafe:!0})},8783:function(t,r,n){"use strict";var e=n(8710).charAt,o=n(1340),i=n(9909),u=n(654),c="String Iterator",a=i.set,f=i.getterFor(c);u(String,"String",(function(t){a(this,{type:c,string:o(t),index:0})}),(function(){var t,r=f(this),n=r.string,o=r.index;return o>=n.length?{value:void 0,done:!0}:(t=e(n,o),r.index+=t.length,{value:t,done:!1})}))},1817:function(t,r,n){"use strict";var e=n(2109),o=n(9781),i=n(7854),u=n(1702),c=n(2597),a=n(614),f=n(7976),s=n(1340),p=n(3070).f,l=n(9920),v=i.Symbol,y=v&&v.prototype;if(o&&a(v)&&(!("description"in y)||void 0!==v().description)){var b={},d=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:s(arguments[0]),r=f(y,this)?new v(t):void 0===t?v():v(t);return""===t&&(b[r]=!0),r};l(d,v),d.prototype=y,y.constructor=d;var g="Symbol(test)"==String(v("test")),h=u(y.toString),m=u(y.valueOf),x=/^Symbol\((.*)\)[^)]+$/,S=u("".replace),O=u("".slice);p(y,"description",{configurable:!0,get:function(){var t=m(this),r=h(t);if(c(b,t))return"";var n=g?O(r,7,-1):S(r,x,"$1");return""===n?void 0:n}}),e({global:!0,forced:!0},{Symbol:d})}},2165:function(t,r,n){n(7235)("iterator")},2526:function(t,r,n){"use strict";var e=n(2109),o=n(7854),i=n(5005),u=n(2104),c=n(6916),a=n(1702),f=n(1913),s=n(9781),p=n(133),l=n(7293),v=n(2597),y=n(3157),b=n(614),d=n(111),g=n(7976),h=n(2190),m=n(9670),x=n(7908),S=n(5656),O=n(4948),w=n(1340),j=n(9114),P=n(30),A=n(1956),T=n(8006),_=n(1156),E=n(5181),L=n(1236),I=n(3070),k=n(6048),F=n(5296),C=n(206),M=n(1320),R=n(2309),N=n(6200),G=n(3501),B=n(9711),D=n(5112),z=n(6061),V=n(7235),U=n(8003),q=n(9909),W=n(2092).forEach,H=N("hidden"),J="Symbol",Q=D("toPrimitive"),Y=q.set,$=q.getterFor(J),K=Object.prototype,X=o.Symbol,Z=X&&X.prototype,tt=o.TypeError,rt=o.QObject,nt=i("JSON","stringify"),et=L.f,ot=I.f,it=_.f,ut=F.f,ct=a([].push),at=R("symbols"),ft=R("op-symbols"),st=R("string-to-symbol-registry"),pt=R("symbol-to-string-registry"),lt=R("wks"),vt=!rt||!rt.prototype||!rt.prototype.findChild,yt=s&&l((function(){return 7!=P(ot({},"a",{get:function(){return ot(this,"a",{value:7}).a}})).a}))?function(t,r,n){var e=et(K,r);e&&delete K[r],ot(t,r,n),e&&t!==K&&ot(K,r,e)}:ot,bt=function(t,r){var n=at[t]=P(Z);return Y(n,{type:J,tag:t,description:r}),s||(n.description=r),n},dt=function(t,r,n){t===K&&dt(ft,r,n),m(t);var e=O(r);return m(n),v(at,e)?(n.enumerable?(v(t,H)&&t[H][e]&&(t[H][e]=!1),n=P(n,{enumerable:j(0,!1)})):(v(t,H)||ot(t,H,j(1,{})),t[H][e]=!0),yt(t,e,n)):ot(t,e,n)},gt=function(t,r){m(t);var n=S(r),e=A(n).concat(St(n));return W(e,(function(r){s&&!c(ht,n,r)||dt(t,r,n[r])})),t},ht=function(t){var r=O(t),n=c(ut,this,r);return!(this===K&&v(at,r)&&!v(ft,r))&&(!(n||!v(this,r)||!v(at,r)||v(this,H)&&this[H][r])||n)},mt=function(t,r){var n=S(t),e=O(r);if(n!==K||!v(at,e)||v(ft,e)){var o=et(n,e);return!o||!v(at,e)||v(n,H)&&n[H][e]||(o.enumerable=!0),o}},xt=function(t){var r=it(S(t)),n=[];return W(r,(function(t){v(at,t)||v(G,t)||ct(n,t)})),n},St=function(t){var r=t===K,n=it(r?ft:S(t)),e=[];return W(n,(function(t){!v(at,t)||r&&!v(K,t)||ct(e,at[t])})),e};(p||(X=function(){if(g(Z,this))throw tt("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?w(arguments[0]):void 0,r=B(t),n=function(t){this===K&&c(n,ft,t),v(this,H)&&v(this[H],r)&&(this[H][r]=!1),yt(this,r,j(1,t))};return s&&vt&&yt(K,r,{configurable:!0,set:n}),bt(r,t)},M(Z=X.prototype,"toString",(function(){return $(this).tag})),M(X,"withoutSetter",(function(t){return bt(B(t),t)})),F.f=ht,I.f=dt,k.f=gt,L.f=mt,T.f=_.f=xt,E.f=St,z.f=function(t){return bt(D(t),t)},s&&(ot(Z,"description",{configurable:!0,get:function(){return $(this).description}}),f||M(K,"propertyIsEnumerable",ht,{unsafe:!0}))),e({global:!0,wrap:!0,forced:!p,sham:!p},{Symbol:X}),W(A(lt),(function(t){V(t)})),e({target:J,stat:!0,forced:!p},{for:function(t){var r=w(t);if(v(st,r))return st[r];var n=X(r);return st[r]=n,pt[n]=r,n},keyFor:function(t){if(!h(t))throw tt(t+" is not a symbol");if(v(pt,t))return pt[t]},useSetter:function(){vt=!0},useSimple:function(){vt=!1}}),e({target:"Object",stat:!0,forced:!p,sham:!s},{create:function(t,r){return void 0===r?P(t):gt(P(t),r)},defineProperty:dt,defineProperties:gt,getOwnPropertyDescriptor:mt}),e({target:"Object",stat:!0,forced:!p},{getOwnPropertyNames:xt,getOwnPropertySymbols:St}),e({target:"Object",stat:!0,forced:l((function(){E.f(1)}))},{getOwnPropertySymbols:function(t){return E.f(x(t))}}),nt)&&e({target:"JSON",stat:!0,forced:!p||l((function(){var t=X();return"[null]"!=nt([t])||"{}"!=nt({a:t})||"{}"!=nt(Object(t))}))},{stringify:function(t,r,n){var e=C(arguments),o=r;if((d(r)||void 0!==t)&&!h(t))return y(r)||(r=function(t,r){if(b(o)&&(r=c(o,this,t,r)),!h(r))return r}),e[1]=r,u(nt,null,e)}});if(!Z[Q]){var Ot=Z.valueOf;M(Z,Q,(function(t){return c(Ot,this)}))}U(X,J),G[H]=!0},3948:function(t,r,n){var e=n(7854),o=n(8324),i=n(8509),u=n(6992),c=n(8880),a=n(5112),f=a("iterator"),s=a("toStringTag"),p=u.values,l=function(t,r){if(t){if(t[f]!==p)try{c(t,f,p)}catch(r){t[f]=p}if(t[s]||c(t,s,r),o[r])for(var n in u)if(t[n]!==u[n])try{c(t,n,u[n])}catch(r){t[n]=u[n]}}};for(var v in o)l(e[v]&&e[v].prototype,v);l(i,"DOMTokenList")},6276:function(t){"use strict";t.exports=JSON.parse('{"and_chr":["97"],"and_ff":["96"],"and_qq":["10.4"],"and_uc":["12.12"],"android":["97"],"baidu":["7.12"],"chrome":["98","97","96","93"],"edge":["98","97","96"],"firefox":["96","95","91","78"],"ie":["11"],"ios_saf":["15.2-15.3","15.0-15.1","14.5-14.8","14.0-14.4","12.2-12.5"],"kaios":["2.5"],"node":["17.0.0","16.12.0","14.18.0","12.22.0"],"op_mini":["all"],"op_mob":["64"],"opera":["83","82"],"safari":["15.2-15.3","15.1","14.1"],"samsung":["16.0","15.0"]}')},1019:function(t){"use strict";t.exports=JSON.parse('{"ie":"IE","edge":"Edge","firefox":"Firefox","chrome":"Chrome","safari":"Safari","opera":"Opera","ios_saf":"Safari on iOS","op_mini":"Opera Mini","android":"Android Browser","bb":"Blackberry Browser","op_mob":"Opera Mobile","and_chr":"Chrome for Android","and_ff":"Firefox for Android","ie_mob":"IE Mobile","and_uc":"UC Browser for Android","samsung":"Samsung Internet","and_qq":"QQ Browser","baidu":"Baidu Browser","kaios":"KaiOS Browser"}')}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var i=r[e]={exports:{}};return t[e](i,i.exports,n),i.exports}n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}();n(4305)}();
|
|
1
|
+
!function(){"use strict";var o={and_chr:["100"],and_ff:["99"],and_qq:["10.4"],and_uc:["12.12"],android:["100"],baidu:["7.12"],chrome:["100","99","98","97"],edge:["100","99","98"],firefox:["99","98","97","91"],ios_saf:["15.4","15.2-15.3","15.0-15.1","14.5-14.8","14.0-14.4","12.2-12.5"],kaios:["2.5"],node:["17.9.0","16.14.0","14.19.0","12.22.0"],op_mini:["all"],op_mob:["64"],opera:["83","82"],safari:["15.4","15.2-15.3","14.1"],samsung:["16.0","15.0"]};const r={"初期化":{type:"func",josi:[],pure:!0,fn:function(o){}},"ブラウザ名変換表":{type:"const",value:{ie:"IE",edge:"Edge",firefox:"Firefox",chrome:"Chrome",safari:"Safari",opera:"Opera",ios_saf:"Safari on iOS",op_mini:"Opera Mini",android:"Android Browser",bb:"Blackberry Browser",op_mob:"Opera Mobile",and_chr:"Chrome for Android",and_ff:"Firefox for Android",ie_mob:"IE Mobile",and_uc:"UC Browser for Android",samsung:"Samsung Internet",and_qq:"QQ Browser",baidu:"Baidu Browser",kaios:"KaiOS Browser"}},"対応ブラウザ一覧取得":{type:"func",josi:[],fn:function(){return o}}};"object"==typeof navigator&&(navigator.nako3,1)&&navigator.nako3.addPluginObject("PluginCaniuse",r)}();
|
|
@@ -1,427 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
!*** ./src/browsers.
|
|
3
|
-
|
|
1
|
+
/*!**************************!*\
|
|
2
|
+
!*** ./src/browsers.mjs ***!
|
|
3
|
+
\**************************/
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
!*** ./src/plugin_caniuse.
|
|
7
|
-
|
|
5
|
+
/*!********************************!*\
|
|
6
|
+
!*** ./src/plugin_caniuse.mjs ***!
|
|
7
|
+
\********************************/
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
!*** ./src/browsers_agents.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/*!***********************************************!*\
|
|
14
|
-
!*** ./node_modules/core-js/internals/uid.js ***!
|
|
15
|
-
\***********************************************/
|
|
16
|
-
|
|
17
|
-
/*!************************************************!*\
|
|
18
|
-
!*** ./node_modules/core-js/internals/html.js ***!
|
|
19
|
-
\************************************************/
|
|
20
|
-
|
|
21
|
-
/*!************************************************!*\
|
|
22
|
-
!*** ./node_modules/core-js/internals/path.js ***!
|
|
23
|
-
\************************************************/
|
|
24
|
-
|
|
25
|
-
/*!*************************************************!*\
|
|
26
|
-
!*** ./node_modules/core-js/internals/fails.js ***!
|
|
27
|
-
\*************************************************/
|
|
28
|
-
|
|
29
|
-
/*!**************************************************!*\
|
|
30
|
-
!*** ./node_modules/core-js/internals/export.js ***!
|
|
31
|
-
\**************************************************/
|
|
32
|
-
|
|
33
|
-
/*!**************************************************!*\
|
|
34
|
-
!*** ./node_modules/core-js/internals/global.js ***!
|
|
35
|
-
\**************************************************/
|
|
36
|
-
|
|
37
|
-
/*!**************************************************!*\
|
|
38
|
-
!*** ./node_modules/core-js/internals/shared.js ***!
|
|
39
|
-
\**************************************************/
|
|
40
|
-
|
|
41
|
-
/*!***************************************************!*\
|
|
42
|
-
!*** ./node_modules/core-js/internals/classof.js ***!
|
|
43
|
-
\***************************************************/
|
|
44
|
-
|
|
45
|
-
/*!***************************************************!*\
|
|
46
|
-
!*** ./node_modules/core-js/internals/is-pure.js ***!
|
|
47
|
-
\***************************************************/
|
|
48
|
-
|
|
49
|
-
/*!***************************************************!*\
|
|
50
|
-
!*** ./node_modules/core-js/modules/es.symbol.js ***!
|
|
51
|
-
\***************************************************/
|
|
52
|
-
|
|
53
|
-
/*!****************************************************!*\
|
|
54
|
-
!*** ./node_modules/core-js/internals/is-array.js ***!
|
|
55
|
-
\****************************************************/
|
|
56
|
-
|
|
57
|
-
/*!****************************************************!*\
|
|
58
|
-
!*** ./node_modules/core-js/internals/own-keys.js ***!
|
|
59
|
-
\****************************************************/
|
|
60
|
-
|
|
61
|
-
/*!****************************************************!*\
|
|
62
|
-
!*** ./node_modules/core-js/internals/redefine.js ***!
|
|
63
|
-
\****************************************************/
|
|
64
|
-
|
|
65
|
-
/*!*****************************************************!*\
|
|
66
|
-
!*** ./node_modules/core-js/internals/an-object.js ***!
|
|
67
|
-
\*****************************************************/
|
|
68
|
-
|
|
69
|
-
/*!*****************************************************!*\
|
|
70
|
-
!*** ./node_modules/core-js/internals/is-forced.js ***!
|
|
71
|
-
\*****************************************************/
|
|
72
|
-
|
|
73
|
-
/*!*****************************************************!*\
|
|
74
|
-
!*** ./node_modules/core-js/internals/is-object.js ***!
|
|
75
|
-
\*****************************************************/
|
|
76
|
-
|
|
77
|
-
/*!*****************************************************!*\
|
|
78
|
-
!*** ./node_modules/core-js/internals/is-symbol.js ***!
|
|
79
|
-
\*****************************************************/
|
|
80
|
-
|
|
81
|
-
/*!*****************************************************!*\
|
|
82
|
-
!*** ./node_modules/core-js/internals/iterators.js ***!
|
|
83
|
-
\*****************************************************/
|
|
84
|
-
|
|
85
|
-
/*!*****************************************************!*\
|
|
86
|
-
!*** ./node_modules/core-js/internals/to-length.js ***!
|
|
87
|
-
\*****************************************************/
|
|
88
|
-
|
|
89
|
-
/*!*****************************************************!*\
|
|
90
|
-
!*** ./node_modules/core-js/internals/to-object.js ***!
|
|
91
|
-
\*****************************************************/
|
|
92
|
-
|
|
93
|
-
/*!*****************************************************!*\
|
|
94
|
-
!*** ./node_modules/core-js/internals/to-string.js ***!
|
|
95
|
-
\*****************************************************/
|
|
96
|
-
|
|
97
|
-
/*!******************************************************!*\
|
|
98
|
-
!*** ./node_modules/core-js/internals/a-callable.js ***!
|
|
99
|
-
\******************************************************/
|
|
100
|
-
|
|
101
|
-
/*!******************************************************!*\
|
|
102
|
-
!*** ./node_modules/core-js/internals/get-method.js ***!
|
|
103
|
-
\******************************************************/
|
|
104
|
-
|
|
105
|
-
/*!******************************************************!*\
|
|
106
|
-
!*** ./node_modules/core-js/internals/set-global.js ***!
|
|
107
|
-
\******************************************************/
|
|
108
|
-
|
|
109
|
-
/*!******************************************************!*\
|
|
110
|
-
!*** ./node_modules/core-js/internals/shared-key.js ***!
|
|
111
|
-
\******************************************************/
|
|
112
|
-
|
|
113
|
-
/*!*******************************************************!*\
|
|
114
|
-
!*** ./node_modules/core-js/internals/array-slice.js ***!
|
|
115
|
-
\*******************************************************/
|
|
116
|
-
|
|
117
|
-
/*!*******************************************************!*\
|
|
118
|
-
!*** ./node_modules/core-js/internals/classof-raw.js ***!
|
|
119
|
-
\*******************************************************/
|
|
120
|
-
|
|
121
|
-
/*!*******************************************************!*\
|
|
122
|
-
!*** ./node_modules/core-js/internals/descriptors.js ***!
|
|
123
|
-
\*******************************************************/
|
|
124
|
-
|
|
125
|
-
/*!*******************************************************!*\
|
|
126
|
-
!*** ./node_modules/core-js/internals/hidden-keys.js ***!
|
|
127
|
-
\*******************************************************/
|
|
128
|
-
|
|
129
|
-
/*!*******************************************************!*\
|
|
130
|
-
!*** ./node_modules/core-js/internals/is-callable.js ***!
|
|
131
|
-
\*******************************************************/
|
|
132
|
-
|
|
133
|
-
/*!*******************************************************!*\
|
|
134
|
-
!*** ./node_modules/core-js/internals/object-keys.js ***!
|
|
135
|
-
\*******************************************************/
|
|
136
|
-
|
|
137
|
-
/*!********************************************************!*\
|
|
138
|
-
!*** ./node_modules/core-js/internals/get-built-in.js ***!
|
|
139
|
-
\********************************************************/
|
|
140
|
-
|
|
141
|
-
/*!********************************************************!*\
|
|
142
|
-
!*** ./node_modules/core-js/internals/shared-store.js ***!
|
|
143
|
-
\********************************************************/
|
|
144
|
-
|
|
145
|
-
/*!********************************************************!*\
|
|
146
|
-
!*** ./node_modules/core-js/internals/to-primitive.js ***!
|
|
147
|
-
\********************************************************/
|
|
148
|
-
|
|
149
|
-
/*!*********************************************************!*\
|
|
150
|
-
!*** ./node_modules/core-js/internals/dom-iterables.js ***!
|
|
151
|
-
\*********************************************************/
|
|
152
|
-
|
|
153
|
-
/*!*********************************************************!*\
|
|
154
|
-
!*** ./node_modules/core-js/internals/enum-bug-keys.js ***!
|
|
155
|
-
\*********************************************************/
|
|
156
|
-
|
|
157
|
-
/*!*********************************************************!*\
|
|
158
|
-
!*** ./node_modules/core-js/internals/function-call.js ***!
|
|
159
|
-
\*********************************************************/
|
|
160
|
-
|
|
161
|
-
/*!*********************************************************!*\
|
|
162
|
-
!*** ./node_modules/core-js/internals/function-name.js ***!
|
|
163
|
-
\*********************************************************/
|
|
164
|
-
|
|
165
|
-
/*!*********************************************************!*\
|
|
166
|
-
!*** ./node_modules/core-js/internals/native-symbol.js ***!
|
|
167
|
-
\*********************************************************/
|
|
168
|
-
|
|
169
|
-
/*!*********************************************************!*\
|
|
170
|
-
!*** ./node_modules/core-js/internals/object-create.js ***!
|
|
171
|
-
\*********************************************************/
|
|
172
|
-
|
|
173
|
-
/*!*********************************************************!*\
|
|
174
|
-
!*** ./node_modules/core-js/internals/try-to-string.js ***!
|
|
175
|
-
\*********************************************************/
|
|
176
|
-
|
|
177
|
-
/*!**********************************************************!*\
|
|
178
|
-
!*** ./node_modules/core-js/internals/array-includes.js ***!
|
|
179
|
-
\**********************************************************/
|
|
180
|
-
|
|
181
|
-
/*!**********************************************************!*\
|
|
182
|
-
!*** ./node_modules/core-js/internals/function-apply.js ***!
|
|
183
|
-
\**********************************************************/
|
|
184
|
-
|
|
185
|
-
/*!**********************************************************!*\
|
|
186
|
-
!*** ./node_modules/core-js/internals/ie8-dom-define.js ***!
|
|
187
|
-
\**********************************************************/
|
|
188
|
-
|
|
189
|
-
/*!**********************************************************!*\
|
|
190
|
-
!*** ./node_modules/core-js/internals/indexed-object.js ***!
|
|
191
|
-
\**********************************************************/
|
|
192
|
-
|
|
193
|
-
/*!**********************************************************!*\
|
|
194
|
-
!*** ./node_modules/core-js/internals/inspect-source.js ***!
|
|
195
|
-
\**********************************************************/
|
|
196
|
-
|
|
197
|
-
/*!**********************************************************!*\
|
|
198
|
-
!*** ./node_modules/core-js/internals/internal-state.js ***!
|
|
199
|
-
\**********************************************************/
|
|
200
|
-
|
|
201
|
-
/*!**********************************************************!*\
|
|
202
|
-
!*** ./node_modules/core-js/internals/is-constructor.js ***!
|
|
203
|
-
\**********************************************************/
|
|
204
|
-
|
|
205
|
-
/*!**********************************************************!*\
|
|
206
|
-
!*** ./node_modules/core-js/internals/iterators-core.js ***!
|
|
207
|
-
\**********************************************************/
|
|
208
|
-
|
|
209
|
-
/*!***********************************************************!*\
|
|
210
|
-
!*** ./node_modules/core-js/internals/array-iteration.js ***!
|
|
211
|
-
\***********************************************************/
|
|
212
|
-
|
|
213
|
-
/*!***********************************************************!*\
|
|
214
|
-
!*** ./node_modules/core-js/internals/create-property.js ***!
|
|
215
|
-
\***********************************************************/
|
|
216
|
-
|
|
217
|
-
/*!***********************************************************!*\
|
|
218
|
-
!*** ./node_modules/core-js/internals/define-iterator.js ***!
|
|
219
|
-
\***********************************************************/
|
|
220
|
-
|
|
221
|
-
/*!***********************************************************!*\
|
|
222
|
-
!*** ./node_modules/core-js/internals/native-weak-map.js ***!
|
|
223
|
-
\***********************************************************/
|
|
224
|
-
|
|
225
|
-
/*!***********************************************************!*\
|
|
226
|
-
!*** ./node_modules/core-js/internals/to-property-key.js ***!
|
|
227
|
-
\***********************************************************/
|
|
228
|
-
|
|
229
|
-
/*!***********************************************************!*\
|
|
230
|
-
!*** ./node_modules/core-js/modules/es.array.iterator.js ***!
|
|
231
|
-
\***********************************************************/
|
|
232
|
-
|
|
233
|
-
/*!************************************************************!*\
|
|
234
|
-
!*** ./node_modules/core-js/internals/has-own-property.js ***!
|
|
235
|
-
\************************************************************/
|
|
236
|
-
|
|
237
|
-
/*!************************************************************!*\
|
|
238
|
-
!*** ./node_modules/core-js/internals/object-to-string.js ***!
|
|
239
|
-
\************************************************************/
|
|
240
|
-
|
|
241
|
-
/*!************************************************************!*\
|
|
242
|
-
!*** ./node_modules/core-js/internals/string-multibyte.js ***!
|
|
243
|
-
\************************************************************/
|
|
244
|
-
|
|
245
|
-
/*!************************************************************!*\
|
|
246
|
-
!*** ./node_modules/core-js/modules/es.string.iterator.js ***!
|
|
247
|
-
\************************************************************/
|
|
248
|
-
|
|
249
|
-
/*!************************************************************!*\
|
|
250
|
-
!*** ./node_modules/core-js/modules/es.symbol.iterator.js ***!
|
|
251
|
-
\************************************************************/
|
|
252
|
-
|
|
253
|
-
/*!*************************************************************!*\
|
|
254
|
-
!*** ./node_modules/core-js/internals/engine-user-agent.js ***!
|
|
255
|
-
\*************************************************************/
|
|
256
|
-
|
|
257
|
-
/*!*************************************************************!*\
|
|
258
|
-
!*** ./node_modules/core-js/internals/engine-v8-version.js ***!
|
|
259
|
-
\*************************************************************/
|
|
260
|
-
|
|
261
|
-
/*!*************************************************************!*\
|
|
262
|
-
!*** ./node_modules/core-js/internals/set-to-string-tag.js ***!
|
|
263
|
-
\*************************************************************/
|
|
264
|
-
|
|
265
|
-
/*!*************************************************************!*\
|
|
266
|
-
!*** ./node_modules/core-js/internals/to-absolute-index.js ***!
|
|
267
|
-
\*************************************************************/
|
|
268
|
-
|
|
269
|
-
/*!*************************************************************!*\
|
|
270
|
-
!*** ./node_modules/core-js/internals/to-indexed-object.js ***!
|
|
271
|
-
\*************************************************************/
|
|
272
|
-
|
|
273
|
-
/*!*************************************************************!*\
|
|
274
|
-
!*** ./node_modules/core-js/internals/use-symbol-as-uid.js ***!
|
|
275
|
-
\*************************************************************/
|
|
276
|
-
|
|
277
|
-
/*!*************************************************************!*\
|
|
278
|
-
!*** ./node_modules/core-js/internals/well-known-symbol.js ***!
|
|
279
|
-
\*************************************************************/
|
|
280
|
-
|
|
281
|
-
/*!*************************************************************!*\
|
|
282
|
-
!*** ./node_modules/core-js/modules/es.object.to-string.js ***!
|
|
283
|
-
\*************************************************************/
|
|
284
|
-
|
|
285
|
-
/*!**************************************************************!*\
|
|
286
|
-
!*** ./node_modules/core-js/internals/add-to-unscopables.js ***!
|
|
287
|
-
\**************************************************************/
|
|
288
|
-
|
|
289
|
-
/*!**************************************************************!*\
|
|
290
|
-
!*** ./node_modules/core-js/internals/array-slice-simple.js ***!
|
|
291
|
-
\**************************************************************/
|
|
292
|
-
|
|
293
|
-
/*!***************************************************************!*\
|
|
294
|
-
!*** ./node_modules/core-js/modules/es.symbol.description.js ***!
|
|
295
|
-
\***************************************************************/
|
|
296
|
-
|
|
297
|
-
/*!****************************************************************!*\
|
|
298
|
-
!*** ./node_modules/core-js/internals/a-possible-prototype.js ***!
|
|
299
|
-
\****************************************************************/
|
|
300
|
-
|
|
301
|
-
/*!****************************************************************!*\
|
|
302
|
-
!*** ./node_modules/core-js/internals/array-species-create.js ***!
|
|
303
|
-
\****************************************************************/
|
|
304
|
-
|
|
305
|
-
/*!****************************************************************!*\
|
|
306
|
-
!*** ./node_modules/core-js/internals/function-bind-native.js ***!
|
|
307
|
-
\****************************************************************/
|
|
308
|
-
|
|
309
|
-
/*!****************************************************************!*\
|
|
310
|
-
!*** ./node_modules/core-js/internals/length-of-array-like.js ***!
|
|
311
|
-
\****************************************************************/
|
|
312
|
-
|
|
313
|
-
/*!****************************************************************!*\
|
|
314
|
-
!*** ./node_modules/core-js/internals/object-keys-internal.js ***!
|
|
315
|
-
\****************************************************************/
|
|
316
|
-
|
|
317
|
-
/*!*****************************************************************!*\
|
|
318
|
-
!*** ./node_modules/core-js/internals/function-bind-context.js ***!
|
|
319
|
-
\*****************************************************************/
|
|
320
|
-
|
|
321
|
-
/*!*****************************************************************!*\
|
|
322
|
-
!*** ./node_modules/core-js/internals/function-uncurry-this.js ***!
|
|
323
|
-
\*****************************************************************/
|
|
324
|
-
|
|
325
|
-
/*!*****************************************************************!*\
|
|
326
|
-
!*** ./node_modules/core-js/internals/ordinary-to-primitive.js ***!
|
|
327
|
-
\*****************************************************************/
|
|
328
|
-
|
|
329
|
-
/*!*****************************************************************!*\
|
|
330
|
-
!*** ./node_modules/core-js/internals/to-string-tag-support.js ***!
|
|
331
|
-
\*****************************************************************/
|
|
332
|
-
|
|
333
|
-
/*!******************************************************************!*\
|
|
334
|
-
!*** ./node_modules/core-js/internals/object-define-property.js ***!
|
|
335
|
-
\******************************************************************/
|
|
336
|
-
|
|
337
|
-
/*!******************************************************************!*\
|
|
338
|
-
!*** ./node_modules/core-js/internals/object-is-prototype-of.js ***!
|
|
339
|
-
\******************************************************************/
|
|
340
|
-
|
|
341
|
-
/*!******************************************************************!*\
|
|
342
|
-
!*** ./node_modules/core-js/internals/to-integer-or-infinity.js ***!
|
|
343
|
-
\******************************************************************/
|
|
344
|
-
|
|
345
|
-
/*!*******************************************************************!*\
|
|
346
|
-
!*** ./node_modules/core-js/internals/document-create-element.js ***!
|
|
347
|
-
\*******************************************************************/
|
|
348
|
-
|
|
349
|
-
/*!*******************************************************************!*\
|
|
350
|
-
!*** ./node_modules/core-js/internals/object-get-prototype-of.js ***!
|
|
351
|
-
\*******************************************************************/
|
|
352
|
-
|
|
353
|
-
/*!*******************************************************************!*\
|
|
354
|
-
!*** ./node_modules/core-js/internals/object-set-prototype-of.js ***!
|
|
355
|
-
\*******************************************************************/
|
|
356
|
-
|
|
357
|
-
/*!*******************************************************************!*\
|
|
358
|
-
!*** ./node_modules/core-js/internals/v8-prototype-define-bug.js ***!
|
|
359
|
-
\*******************************************************************/
|
|
360
|
-
|
|
361
|
-
/*!********************************************************************!*\
|
|
362
|
-
!*** ./node_modules/core-js/internals/correct-prototype-getter.js ***!
|
|
363
|
-
\********************************************************************/
|
|
364
|
-
|
|
365
|
-
/*!********************************************************************!*\
|
|
366
|
-
!*** ./node_modules/core-js/internals/define-well-known-symbol.js ***!
|
|
367
|
-
\********************************************************************/
|
|
368
|
-
|
|
369
|
-
/*!********************************************************************!*\
|
|
370
|
-
!*** ./node_modules/core-js/internals/dom-token-list-prototype.js ***!
|
|
371
|
-
\********************************************************************/
|
|
372
|
-
|
|
373
|
-
/*!********************************************************************!*\
|
|
374
|
-
!*** ./node_modules/core-js/internals/object-define-properties.js ***!
|
|
375
|
-
\********************************************************************/
|
|
376
|
-
|
|
377
|
-
/*!********************************************************************!*\
|
|
378
|
-
!*** ./node_modules/core-js/internals/require-object-coercible.js ***!
|
|
379
|
-
\********************************************************************/
|
|
380
|
-
|
|
381
|
-
/*!*********************************************************************!*\
|
|
382
|
-
!*** ./node_modules/core-js/internals/array-species-constructor.js ***!
|
|
383
|
-
\*********************************************************************/
|
|
384
|
-
|
|
385
|
-
/*!*********************************************************************!*\
|
|
386
|
-
!*** ./node_modules/core-js/internals/well-known-symbol-wrapped.js ***!
|
|
387
|
-
\*********************************************************************/
|
|
388
|
-
|
|
389
|
-
/*!**********************************************************************!*\
|
|
390
|
-
!*** ./node_modules/core-js/internals/create-property-descriptor.js ***!
|
|
391
|
-
\**********************************************************************/
|
|
392
|
-
|
|
393
|
-
/*!**********************************************************************!*\
|
|
394
|
-
!*** ./node_modules/core-js/modules/web.dom-collections.iterator.js ***!
|
|
395
|
-
\**********************************************************************/
|
|
396
|
-
|
|
397
|
-
/*!***********************************************************************!*\
|
|
398
|
-
!*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
|
|
399
|
-
\***********************************************************************/
|
|
400
|
-
|
|
401
|
-
/*!***********************************************************************!*\
|
|
402
|
-
!*** ./node_modules/core-js/internals/create-iterator-constructor.js ***!
|
|
403
|
-
\***********************************************************************/
|
|
404
|
-
|
|
405
|
-
/*!*************************************************************************!*\
|
|
406
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-names.js ***!
|
|
407
|
-
\*************************************************************************/
|
|
408
|
-
|
|
409
|
-
/*!*************************************************************************!*\
|
|
410
|
-
!*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***!
|
|
411
|
-
\*************************************************************************/
|
|
412
|
-
|
|
413
|
-
/*!**************************************************************************!*\
|
|
414
|
-
!*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***!
|
|
415
|
-
\**************************************************************************/
|
|
416
|
-
|
|
417
|
-
/*!***************************************************************************!*\
|
|
418
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
|
|
419
|
-
\***************************************************************************/
|
|
420
|
-
|
|
421
|
-
/*!******************************************************************************!*\
|
|
422
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
|
|
423
|
-
\******************************************************************************/
|
|
424
|
-
|
|
425
|
-
/*!**********************************************************************************!*\
|
|
426
|
-
!*** ./node_modules/core-js/internals/object-get-own-property-names-external.js ***!
|
|
427
|
-
\**********************************************************************************/
|
|
9
|
+
/*!*********************************!*\
|
|
10
|
+
!*** ./src/browsers_agents.mjs ***!
|
|
11
|
+
\*********************************/
|
package/release/plugin_csv.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){var t={8160:function(t,r,n){function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}n(2526),n(1817),n(1539),n(2165),n(6992),n(8783),n(3948);var o={"初期化":{type:"func",josi:[],pure:!0,fn:function(t){}},"CSV取得":{type:"func",josi:[["を","の","で"]],pure:!0,fn:function(t){var r=n(8516);return r.options.delimiter=",",r.parse(t)}},"TSV取得":{type:"func",josi:[["を","の","で"]],pure:!0,fn:function(t){var r=n(8516);return r.options.delimiter="\t",r.parse(t)}},"表CSV変換":{type:"func",josi:[["を"]],pure:!0,fn:function(t){var r=n(8516);return r.options.delimiter=",",r.stringify(t)}},"表TSV変換":{type:"func",josi:[["を"]],pure:!0,fn:function(t){var r=n(8516);return r.options.delimiter="\t",r.stringify(t)}}};t.exports=o,"object"===("undefined"==typeof navigator?"undefined":e(navigator))&&"object"===e(navigator.nako3)&&navigator.nako3.addPluginObject("PluginCSV",o)},9662:function(t,r,n){var e=n(7854),o=n(614),i=n(6330),u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a function")}},6077:function(t,r,n){var e=n(7854),o=n(614),i=e.String,u=e.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw u("Can't set "+i(t)+" as a prototype")}},1223:function(t,r,n){var e=n(5112),o=n(30),i=n(3070),u=e("unscopables"),c=Array.prototype;null==c[u]&&i.f(c,u,{configurable:!0,value:o(null)}),t.exports=function(t){c[u][t]=!0}},9670:function(t,r,n){var e=n(7854),o=n(111),i=e.String,u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not an object")}},1318:function(t,r,n){var e=n(5656),o=n(1400),i=n(6244),u=function(t){return function(r,n,u){var c,s=e(r),f=i(s),a=o(u,f);if(t&&n!=n){for(;f>a;)if((c=s[a++])!=c)return!0}else for(;f>a;a++)if((t||a in s)&&s[a]===n)return t||a||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},2092:function(t,r,n){var e=n(9974),o=n(1702),i=n(8361),u=n(7908),c=n(6244),s=n(5417),f=o([].push),a=function(t){var r=1==t,n=2==t,o=3==t,a=4==t,p=6==t,l=7==t,v=5==t||p;return function(y,h,g,b){for(var d,m,x=u(y),w=i(x),S=e(h,g),O=c(w),j=0,P=b||s,A=r?P(y,O):n||l?P(y,0):void 0;O>j;j++)if((v||j in w)&&(m=S(d=w[j],j,x),t))if(r)A[j]=m;else if(m)switch(t){case 3:return!0;case 5:return d;case 6:return j;case 2:f(A,d)}else switch(t){case 4:return!1;case 7:f(A,d)}return p?-1:o||a?a:A}};t.exports={forEach:a(0),map:a(1),filter:a(2),some:a(3),every:a(4),find:a(5),findIndex:a(6),filterReject:a(7)}},1589:function(t,r,n){var e=n(7854),o=n(1400),i=n(6244),u=n(6135),c=e.Array,s=Math.max;t.exports=function(t,r,n){for(var e=i(t),f=o(r,e),a=o(void 0===n?e:n,e),p=c(s(a-f,0)),l=0;f<a;f++,l++)u(p,l,t[f]);return p.length=l,p}},206:function(t,r,n){var e=n(1702);t.exports=e([].slice)},7475:function(t,r,n){var e=n(7854),o=n(3157),i=n(4411),u=n(111),c=n(5112)("species"),s=e.Array;t.exports=function(t){var r;return o(t)&&(r=t.constructor,(i(r)&&(r===s||o(r.prototype))||u(r)&&null===(r=r[c]))&&(r=void 0)),void 0===r?s:r}},5417:function(t,r,n){var e=n(7475);t.exports=function(t,r){return new(e(t))(0===r?0:r)}},4326:function(t,r,n){var e=n(1702),o=e({}.toString),i=e("".slice);t.exports=function(t){return i(o(t),8,-1)}},648:function(t,r,n){var e=n(7854),o=n(1694),i=n(614),u=n(4326),c=n(5112)("toStringTag"),s=e.Object,f="Arguments"==u(function(){return arguments}());t.exports=o?u:function(t){var r,n,e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,r){try{return t[r]}catch(t){}}(r=s(t),c))?n:f?u(r):"Object"==(e=u(r))&&i(r.callee)?"Arguments":e}},9920:function(t,r,n){var e=n(2597),o=n(3887),i=n(1236),u=n(3070);t.exports=function(t,r,n){for(var c=o(r),s=u.f,f=i.f,a=0;a<c.length;a++){var p=c[a];e(t,p)||n&&e(n,p)||s(t,p,f(r,p))}}},8544:function(t,r,n){var e=n(7293);t.exports=!e((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4994:function(t,r,n){"use strict";var e=n(3383).IteratorPrototype,o=n(30),i=n(9114),u=n(8003),c=n(7497),s=function(){return this};t.exports=function(t,r,n,f){var a=r+" Iterator";return t.prototype=o(e,{next:i(+!f,n)}),u(t,a,!1,!0),c[a]=s,t}},8880:function(t,r,n){var e=n(9781),o=n(3070),i=n(9114);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},9114:function(t){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},6135:function(t,r,n){"use strict";var e=n(4948),o=n(3070),i=n(9114);t.exports=function(t,r,n){var u=e(r);u in t?o.f(t,u,i(0,n)):t[u]=n}},654:function(t,r,n){"use strict";var e=n(2109),o=n(6916),i=n(1913),u=n(6530),c=n(614),s=n(4994),f=n(9518),a=n(7674),p=n(8003),l=n(8880),v=n(1320),y=n(5112),h=n(7497),g=n(3383),b=u.PROPER,d=u.CONFIGURABLE,m=g.IteratorPrototype,x=g.BUGGY_SAFARI_ITERATORS,w=y("iterator"),S="keys",O="values",j="entries",P=function(){return this};t.exports=function(t,r,n,u,y,g,A){s(n,r,u);var T,L,E,C=function(t){if(t===y&&_)return _;if(!x&&t in R)return R[t];switch(t){case S:case O:case j:return function(){return new n(this,t)}}return function(){return new n(this)}},F=r+" Iterator",k=!1,R=t.prototype,I=R[w]||R["@@iterator"]||y&&R[y],_=!x&&I||C(y),M="Array"==r&&R.entries||I;if(M&&(T=f(M.call(new t)))!==Object.prototype&&T.next&&(i||f(T)===m||(a?a(T,m):c(T[w])||v(T,w,P)),p(T,F,!0,!0),i&&(h[F]=P)),b&&y==O&&I&&I.name!==O&&(!i&&d?l(R,"name",O):(k=!0,_=function(){return o(I,this)})),y)if(L={values:C(O),keys:g?_:C(S),entries:C(j)},A)for(E in L)(x||k||!(E in R))&&v(R,E,L[E]);else e({target:r,proto:!0,forced:x||k},L);return i&&!A||R[w]===_||v(R,w,_,{name:y}),h[r]=_,L}},7235:function(t,r,n){var e=n(857),o=n(2597),i=n(6061),u=n(3070).f;t.exports=function(t){var r=e.Symbol||(e.Symbol={});o(r,t)||u(r,t,{value:i.f(t)})}},9781:function(t,r,n){var e=n(7293);t.exports=!e((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,r,n){var e=n(7854),o=n(111),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(t,r,n){var e=n(317)("span").classList,o=e&&e.constructor&&e.constructor.prototype;t.exports=o===Object.prototype?void 0:o},8113:function(t,r,n){var e=n(5005);t.exports=e("navigator","userAgent")||""},7392:function(t,r,n){var e,o,i=n(7854),u=n(8113),c=i.process,s=i.Deno,f=c&&c.versions||s&&s.version,a=f&&f.v8;a&&(o=(e=a.split("."))[0]>0&&e[0]<4?1:+(e[0]+e[1])),!o&&u&&(!(e=u.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=u.match(/Chrome\/(\d+)/))&&(o=+e[1]),t.exports=o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,r,n){var e=n(7854),o=n(1236).f,i=n(8880),u=n(1320),c=n(3505),s=n(9920),f=n(4705);t.exports=function(t,r){var n,a,p,l,v,y=t.target,h=t.global,g=t.stat;if(n=h?e:g?e[y]||c(y,{}):(e[y]||{}).prototype)for(a in r){if(l=r[a],p=t.noTargetGet?(v=o(n,a))&&v.value:n[a],!f(h?a:y+(g?".":"#")+a,t.forced)&&void 0!==p){if(typeof l==typeof p)continue;s(l,p)}(t.sham||p&&p.sham)&&i(l,"sham",!0),u(n,a,l,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},2104:function(t,r,n){var e=n(4374),o=Function.prototype,i=o.apply,u=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(e?u.bind(i):function(){return u.apply(i,arguments)})},9974:function(t,r,n){var e=n(1702),o=n(9662),i=n(4374),u=e(e.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?u(t,r):function(){return t.apply(r,arguments)}}},4374:function(t,r,n){var e=n(7293);t.exports=!e((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},6916:function(t,r,n){var e=n(4374),o=Function.prototype.call;t.exports=e?o.bind(o):function(){return o.apply(o,arguments)}},6530:function(t,r,n){var e=n(9781),o=n(2597),i=Function.prototype,u=e&&Object.getOwnPropertyDescriptor,c=o(i,"name"),s=c&&"something"===function(){}.name,f=c&&(!e||e&&u(i,"name").configurable);t.exports={EXISTS:c,PROPER:s,CONFIGURABLE:f}},1702:function(t,r,n){var e=n(4374),o=Function.prototype,i=o.bind,u=o.call,c=e&&i.bind(u,u);t.exports=e?function(t){return t&&c(t)}:function(t){return t&&function(){return u.apply(t,arguments)}}},5005:function(t,r,n){var e=n(7854),o=n(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(e[t]):e[t]&&e[t][r]}},8173:function(t,r,n){var e=n(9662);t.exports=function(t,r){var n=t[r];return null==n?void 0:e(n)}},7854:function(t,r,n){var e=function(t){return t&&t.Math==Math&&t};t.exports=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},2597:function(t,r,n){var e=n(1702),o=n(7908),i=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},3501:function(t){t.exports={}},490:function(t,r,n){var e=n(5005);t.exports=e("document","documentElement")},4664:function(t,r,n){var e=n(9781),o=n(7293),i=n(317);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,r,n){var e=n(7854),o=n(1702),i=n(7293),u=n(4326),c=e.Object,s=o("".split);t.exports=i((function(){return!c("z").propertyIsEnumerable(0)}))?function(t){return"String"==u(t)?s(t,""):c(t)}:c},2788:function(t,r,n){var e=n(1702),o=n(614),i=n(5465),u=e(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return u(t)}),t.exports=i.inspectSource},9909:function(t,r,n){var e,o,i,u=n(8536),c=n(7854),s=n(1702),f=n(111),a=n(8880),p=n(2597),l=n(5465),v=n(6200),y=n(3501),h="Object already initialized",g=c.TypeError,b=c.WeakMap;if(u||l.state){var d=l.state||(l.state=new b),m=s(d.get),x=s(d.has),w=s(d.set);e=function(t,r){if(x(d,t))throw new g(h);return r.facade=t,w(d,t,r),r},o=function(t){return m(d,t)||{}},i=function(t){return x(d,t)}}else{var S=v("state");y[S]=!0,e=function(t,r){if(p(t,S))throw new g(h);return r.facade=t,a(t,S,r),r},o=function(t){return p(t,S)?t[S]:{}},i=function(t){return p(t,S)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!f(r)||(n=o(r)).type!==t)throw g("Incompatible receiver, "+t+" required");return n}}}},3157:function(t,r,n){var e=n(4326);t.exports=Array.isArray||function(t){return"Array"==e(t)}},614:function(t){t.exports=function(t){return"function"==typeof t}},4411:function(t,r,n){var e=n(1702),o=n(7293),i=n(614),u=n(648),c=n(5005),s=n(2788),f=function(){},a=[],p=c("Reflect","construct"),l=/^\s*(?:class|function)\b/,v=e(l.exec),y=!l.exec(f),h=function(t){if(!i(t))return!1;try{return p(f,a,t),!0}catch(t){return!1}},g=function(t){if(!i(t))return!1;switch(u(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return y||!!v(l,s(t))}catch(t){return!0}};g.sham=!0,t.exports=!p||o((function(){var t;return h(h.call)||!h(Object)||!h((function(){t=!0}))||t}))?g:h},4705:function(t,r,n){var e=n(7293),o=n(614),i=/#|\.prototype\./,u=function(t,r){var n=s[c(t)];return n==a||n!=f&&(o(r)?e(r):!!r)},c=u.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=u.data={},f=u.NATIVE="N",a=u.POLYFILL="P";t.exports=u},111:function(t,r,n){var e=n(614);t.exports=function(t){return"object"==typeof t?null!==t:e(t)}},1913:function(t){t.exports=!1},2190:function(t,r,n){var e=n(7854),o=n(5005),i=n(614),u=n(7976),c=n(3307),s=e.Object;t.exports=c?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return i(r)&&u(r.prototype,s(t))}},3383:function(t,r,n){"use strict";var e,o,i,u=n(7293),c=n(614),s=n(30),f=n(9518),a=n(1320),p=n(5112),l=n(1913),v=p("iterator"),y=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(e=o):y=!0),null==e||u((function(){var t={};return e[v].call(t)!==t}))?e={}:l&&(e=s(e)),c(e[v])||a(e,v,(function(){return this})),t.exports={IteratorPrototype:e,BUGGY_SAFARI_ITERATORS:y}},7497:function(t){t.exports={}},6244:function(t,r,n){var e=n(7466);t.exports=function(t){return e(t.length)}},133:function(t,r,n){var e=n(7392),o=n(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&e&&e<41}))},8536:function(t,r,n){var e=n(7854),o=n(614),i=n(2788),u=e.WeakMap;t.exports=o(u)&&/native code/.test(i(u))},30:function(t,r,n){var e,o=n(9670),i=n(6048),u=n(748),c=n(3501),s=n(490),f=n(317),a=n(6200),p=a("IE_PROTO"),l=function(){},v=function(t){return"<script>"+t+"</"+"script>"},y=function(t){t.write(v("")),t.close();var r=t.parentWindow.Object;return t=null,r},h=function(){try{e=new ActiveXObject("htmlfile")}catch(t){}var t,r;h="undefined"!=typeof document?document.domain&&e?y(e):((r=f("iframe")).style.display="none",s.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(v("document.F=Object")),t.close(),t.F):y(e);for(var n=u.length;n--;)delete h.prototype[u[n]];return h()};c[p]=!0,t.exports=Object.create||function(t,r){var n;return null!==t?(l.prototype=o(t),n=new l,l.prototype=null,n[p]=t):n=h(),void 0===r?n:i.f(n,r)}},6048:function(t,r,n){var e=n(9781),o=n(3353),i=n(3070),u=n(9670),c=n(5656),s=n(1956);r.f=e&&!o?Object.defineProperties:function(t,r){u(t);for(var n,e=c(r),o=s(r),f=o.length,a=0;f>a;)i.f(t,n=o[a++],e[n]);return t}},3070:function(t,r,n){var e=n(7854),o=n(9781),i=n(4664),u=n(3353),c=n(9670),s=n(4948),f=e.TypeError,a=Object.defineProperty,p=Object.getOwnPropertyDescriptor,l="enumerable",v="configurable",y="writable";r.f=o?u?function(t,r,n){if(c(t),r=s(r),c(n),"function"==typeof t&&"prototype"===r&&"value"in n&&y in n&&!n.writable){var e=p(t,r);e&&e.writable&&(t[r]=n.value,n={configurable:v in n?n.configurable:e.configurable,enumerable:l in n?n.enumerable:e.enumerable,writable:!1})}return a(t,r,n)}:a:function(t,r,n){if(c(t),r=s(r),c(n),i)try{return a(t,r,n)}catch(t){}if("get"in n||"set"in n)throw f("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},1236:function(t,r,n){var e=n(9781),o=n(6916),i=n(5296),u=n(9114),c=n(5656),s=n(4948),f=n(2597),a=n(4664),p=Object.getOwnPropertyDescriptor;r.f=e?p:function(t,r){if(t=c(t),r=s(r),a)try{return p(t,r)}catch(t){}if(f(t,r))return u(!o(i.f,t,r),t[r])}},1156:function(t,r,n){var e=n(4326),o=n(5656),i=n(8006).f,u=n(1589),c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return c&&"Window"==e(t)?function(t){try{return i(t)}catch(t){return u(c)}}(t):i(o(t))}},8006:function(t,r,n){var e=n(6324),o=n(748).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},5181:function(t,r){r.f=Object.getOwnPropertySymbols},9518:function(t,r,n){var e=n(7854),o=n(2597),i=n(614),u=n(7908),c=n(6200),s=n(8544),f=c("IE_PROTO"),a=e.Object,p=a.prototype;t.exports=s?a.getPrototypeOf:function(t){var r=u(t);if(o(r,f))return r[f];var n=r.constructor;return i(n)&&r instanceof n?n.prototype:r instanceof a?p:null}},7976:function(t,r,n){var e=n(1702);t.exports=e({}.isPrototypeOf)},6324:function(t,r,n){var e=n(1702),o=n(2597),i=n(5656),u=n(1318).indexOf,c=n(3501),s=e([].push);t.exports=function(t,r){var n,e=i(t),f=0,a=[];for(n in e)!o(c,n)&&o(e,n)&&s(a,n);for(;r.length>f;)o(e,n=r[f++])&&(~u(a,n)||s(a,n));return a}},1956:function(t,r,n){var e=n(6324),o=n(748);t.exports=Object.keys||function(t){return e(t,o)}},5296:function(t,r){"use strict";var n={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,o=e&&!n.call({1:2},1);r.f=o?function(t){var r=e(this,t);return!!r&&r.enumerable}:n},7674:function(t,r,n){var e=n(1702),o=n(9670),i=n(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,n={};try{(t=e(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),r=n instanceof Array}catch(t){}return function(n,e){return o(n),i(e),r?t(n,e):n.__proto__=e,n}}():void 0)},288:function(t,r,n){"use strict";var e=n(1694),o=n(648);t.exports=e?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,r,n){var e=n(7854),o=n(6916),i=n(614),u=n(111),c=e.TypeError;t.exports=function(t,r){var n,e;if("string"===r&&i(n=t.toString)&&!u(e=o(n,t)))return e;if(i(n=t.valueOf)&&!u(e=o(n,t)))return e;if("string"!==r&&i(n=t.toString)&&!u(e=o(n,t)))return e;throw c("Can't convert object to primitive value")}},3887:function(t,r,n){var e=n(5005),o=n(1702),i=n(8006),u=n(5181),c=n(9670),s=o([].concat);t.exports=e("Reflect","ownKeys")||function(t){var r=i.f(c(t)),n=u.f;return n?s(r,n(t)):r}},857:function(t,r,n){var e=n(7854);t.exports=e},1320:function(t,r,n){var e=n(7854),o=n(614),i=n(2597),u=n(8880),c=n(3505),s=n(2788),f=n(9909),a=n(6530).CONFIGURABLE,p=f.get,l=f.enforce,v=String(String).split("String");(t.exports=function(t,r,n,s){var f,p=!!s&&!!s.unsafe,y=!!s&&!!s.enumerable,h=!!s&&!!s.noTargetGet,g=s&&void 0!==s.name?s.name:r;o(n)&&("Symbol("===String(g).slice(0,7)&&(g="["+String(g).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(n,"name")||a&&n.name!==g)&&u(n,"name",g),(f=l(n)).source||(f.source=v.join("string"==typeof g?g:""))),t!==e?(p?!h&&t[r]&&(y=!0):delete t[r],y?t[r]=n:u(t,r,n)):y?t[r]=n:c(r,n)})(Function.prototype,"toString",(function(){return o(this)&&p(this).source||s(this)}))},4488:function(t,r,n){var e=n(7854).TypeError;t.exports=function(t){if(null==t)throw e("Can't call method on "+t);return t}},3505:function(t,r,n){var e=n(7854),o=Object.defineProperty;t.exports=function(t,r){try{o(e,t,{value:r,configurable:!0,writable:!0})}catch(n){e[t]=r}return r}},8003:function(t,r,n){var e=n(3070).f,o=n(2597),i=n(5112)("toStringTag");t.exports=function(t,r,n){t&&!n&&(t=t.prototype),t&&!o(t,i)&&e(t,i,{configurable:!0,value:r})}},6200:function(t,r,n){var e=n(2309),o=n(9711),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,r,n){var e=n(7854),o=n(3505),i="__core-js_shared__",u=e[i]||o(i,{});t.exports=u},2309:function(t,r,n){var e=n(1913),o=n(5465);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.21.0",mode:e?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.21.0/LICENSE",source:"https://github.com/zloirock/core-js"})},8710:function(t,r,n){var e=n(1702),o=n(9303),i=n(1340),u=n(4488),c=e("".charAt),s=e("".charCodeAt),f=e("".slice),a=function(t){return function(r,n){var e,a,p=i(u(r)),l=o(n),v=p.length;return l<0||l>=v?t?"":void 0:(e=s(p,l))<55296||e>56319||l+1===v||(a=s(p,l+1))<56320||a>57343?t?c(p,l):e:t?f(p,l,l+2):a-56320+(e-55296<<10)+65536}};t.exports={codeAt:a(!1),charAt:a(!0)}},1400:function(t,r,n){var e=n(9303),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return n<0?o(n+r,0):i(n,r)}},5656:function(t,r,n){var e=n(8361),o=n(4488);t.exports=function(t){return e(o(t))}},9303:function(t){var r=Math.ceil,n=Math.floor;t.exports=function(t){var e=+t;return e!=e||0===e?0:(e>0?n:r)(e)}},7466:function(t,r,n){var e=n(9303),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},7908:function(t,r,n){var e=n(7854),o=n(4488),i=e.Object;t.exports=function(t){return i(o(t))}},7593:function(t,r,n){var e=n(7854),o=n(6916),i=n(111),u=n(2190),c=n(8173),s=n(2140),f=n(5112),a=e.TypeError,p=f("toPrimitive");t.exports=function(t,r){if(!i(t)||u(t))return t;var n,e=c(t,p);if(e){if(void 0===r&&(r="default"),n=o(e,t,r),!i(n)||u(n))return n;throw a("Can't convert object to primitive value")}return void 0===r&&(r="number"),s(t,r)}},4948:function(t,r,n){var e=n(7593),o=n(2190);t.exports=function(t){var r=e(t,"string");return o(r)?r:r+""}},1694:function(t,r,n){var e={};e[n(5112)("toStringTag")]="z",t.exports="[object z]"===String(e)},1340:function(t,r,n){var e=n(7854),o=n(648),i=e.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return i(t)}},6330:function(t,r,n){var e=n(7854).String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},9711:function(t,r,n){var e=n(1702),o=0,i=Math.random(),u=e(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+u(++o+i,36)}},3307:function(t,r,n){var e=n(133);t.exports=e&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:function(t,r,n){var e=n(9781),o=n(7293);t.exports=e&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},6061:function(t,r,n){var e=n(5112);r.f=e},5112:function(t,r,n){var e=n(7854),o=n(2309),i=n(2597),u=n(9711),c=n(133),s=n(3307),f=o("wks"),a=e.Symbol,p=a&&a.for,l=s?a:a&&a.withoutSetter||u;t.exports=function(t){if(!i(f,t)||!c&&"string"!=typeof f[t]){var r="Symbol."+t;c&&i(a,t)?f[t]=a[t]:f[t]=s&&p?p(r):l(r)}return f[t]}},6992:function(t,r,n){"use strict";var e=n(5656),o=n(1223),i=n(7497),u=n(9909),c=n(3070).f,s=n(654),f=n(1913),a=n(9781),p="Array Iterator",l=u.set,v=u.getterFor(p);t.exports=s(Array,"Array",(function(t,r){l(this,{type:p,target:e(t),index:0,kind:r})}),(function(){var t=v(this),r=t.target,n=t.kind,e=t.index++;return!r||e>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:e,done:!1}:"values"==n?{value:r[e],done:!1}:{value:[e,r[e]],done:!1}}),"values");var y=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&a&&"values"!==y.name)try{c(y,"name",{value:"values"})}catch(t){}},1539:function(t,r,n){var e=n(1694),o=n(1320),i=n(288);e||o(Object.prototype,"toString",i,{unsafe:!0})},8783:function(t,r,n){"use strict";var e=n(8710).charAt,o=n(1340),i=n(9909),u=n(654),c="String Iterator",s=i.set,f=i.getterFor(c);u(String,"String",(function(t){s(this,{type:c,string:o(t),index:0})}),(function(){var t,r=f(this),n=r.string,o=r.index;return o>=n.length?{value:void 0,done:!0}:(t=e(n,o),r.index+=t.length,{value:t,done:!1})}))},1817:function(t,r,n){"use strict";var e=n(2109),o=n(9781),i=n(7854),u=n(1702),c=n(2597),s=n(614),f=n(7976),a=n(1340),p=n(3070).f,l=n(9920),v=i.Symbol,y=v&&v.prototype;if(o&&s(v)&&(!("description"in y)||void 0!==v().description)){var h={},g=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:a(arguments[0]),r=f(y,this)?new v(t):void 0===t?v():v(t);return""===t&&(h[r]=!0),r};l(g,v),g.prototype=y,y.constructor=g;var b="Symbol(test)"==String(v("test")),d=u(y.toString),m=u(y.valueOf),x=/^Symbol\((.*)\)[^)]+$/,w=u("".replace),S=u("".slice);p(y,"description",{configurable:!0,get:function(){var t=m(this),r=d(t);if(c(h,t))return"";var n=b?S(r,7,-1):w(r,x,"$1");return""===n?void 0:n}}),e({global:!0,forced:!0},{Symbol:g})}},2165:function(t,r,n){n(7235)("iterator")},2526:function(t,r,n){"use strict";var e=n(2109),o=n(7854),i=n(5005),u=n(2104),c=n(6916),s=n(1702),f=n(1913),a=n(9781),p=n(133),l=n(7293),v=n(2597),y=n(3157),h=n(614),g=n(111),b=n(7976),d=n(2190),m=n(9670),x=n(7908),w=n(5656),S=n(4948),O=n(1340),j=n(9114),P=n(30),A=n(1956),T=n(8006),L=n(1156),E=n(5181),C=n(1236),F=n(3070),k=n(6048),R=n(5296),I=n(206),_=n(1320),M=n(2309),N=n(6200),G=n(3501),V=n(9711),D=n(5112),z=n(6061),H=n(7235),B=n(8003),U=n(9909),W=n(2092).forEach,$=N("hidden"),Y="Symbol",q=D("toPrimitive"),J=U.set,X=U.getterFor(Y),K=Object.prototype,Q=o.Symbol,Z=Q&&Q.prototype,tt=o.TypeError,rt=o.QObject,nt=i("JSON","stringify"),et=C.f,ot=F.f,it=L.f,ut=R.f,ct=s([].push),st=M("symbols"),ft=M("op-symbols"),at=M("string-to-symbol-registry"),pt=M("symbol-to-string-registry"),lt=M("wks"),vt=!rt||!rt.prototype||!rt.prototype.findChild,yt=a&&l((function(){return 7!=P(ot({},"a",{get:function(){return ot(this,"a",{value:7}).a}})).a}))?function(t,r,n){var e=et(K,r);e&&delete K[r],ot(t,r,n),e&&t!==K&&ot(K,r,e)}:ot,ht=function(t,r){var n=st[t]=P(Z);return J(n,{type:Y,tag:t,description:r}),a||(n.description=r),n},gt=function(t,r,n){t===K&>(ft,r,n),m(t);var e=S(r);return m(n),v(st,e)?(n.enumerable?(v(t,$)&&t[$][e]&&(t[$][e]=!1),n=P(n,{enumerable:j(0,!1)})):(v(t,$)||ot(t,$,j(1,{})),t[$][e]=!0),yt(t,e,n)):ot(t,e,n)},bt=function(t,r){m(t);var n=w(r),e=A(n).concat(wt(n));return W(e,(function(r){a&&!c(dt,n,r)||gt(t,r,n[r])})),t},dt=function(t){var r=S(t),n=c(ut,this,r);return!(this===K&&v(st,r)&&!v(ft,r))&&(!(n||!v(this,r)||!v(st,r)||v(this,$)&&this[$][r])||n)},mt=function(t,r){var n=w(t),e=S(r);if(n!==K||!v(st,e)||v(ft,e)){var o=et(n,e);return!o||!v(st,e)||v(n,$)&&n[$][e]||(o.enumerable=!0),o}},xt=function(t){var r=it(w(t)),n=[];return W(r,(function(t){v(st,t)||v(G,t)||ct(n,t)})),n},wt=function(t){var r=t===K,n=it(r?ft:w(t)),e=[];return W(n,(function(t){!v(st,t)||r&&!v(K,t)||ct(e,st[t])})),e};(p||(Q=function(){if(b(Z,this))throw tt("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?O(arguments[0]):void 0,r=V(t),n=function(t){this===K&&c(n,ft,t),v(this,$)&&v(this[$],r)&&(this[$][r]=!1),yt(this,r,j(1,t))};return a&&vt&&yt(K,r,{configurable:!0,set:n}),ht(r,t)},_(Z=Q.prototype,"toString",(function(){return X(this).tag})),_(Q,"withoutSetter",(function(t){return ht(V(t),t)})),R.f=dt,F.f=gt,k.f=bt,C.f=mt,T.f=L.f=xt,E.f=wt,z.f=function(t){return ht(D(t),t)},a&&(ot(Z,"description",{configurable:!0,get:function(){return X(this).description}}),f||_(K,"propertyIsEnumerable",dt,{unsafe:!0}))),e({global:!0,wrap:!0,forced:!p,sham:!p},{Symbol:Q}),W(A(lt),(function(t){H(t)})),e({target:Y,stat:!0,forced:!p},{for:function(t){var r=O(t);if(v(at,r))return at[r];var n=Q(r);return at[r]=n,pt[n]=r,n},keyFor:function(t){if(!d(t))throw tt(t+" is not a symbol");if(v(pt,t))return pt[t]},useSetter:function(){vt=!0},useSimple:function(){vt=!1}}),e({target:"Object",stat:!0,forced:!p,sham:!a},{create:function(t,r){return void 0===r?P(t):bt(P(t),r)},defineProperty:gt,defineProperties:bt,getOwnPropertyDescriptor:mt}),e({target:"Object",stat:!0,forced:!p},{getOwnPropertyNames:xt,getOwnPropertySymbols:wt}),e({target:"Object",stat:!0,forced:l((function(){E.f(1)}))},{getOwnPropertySymbols:function(t){return E.f(x(t))}}),nt)&&e({target:"JSON",stat:!0,forced:!p||l((function(){var t=Q();return"[null]"!=nt([t])||"{}"!=nt({a:t})||"{}"!=nt(Object(t))}))},{stringify:function(t,r,n){var e=I(arguments),o=r;if((g(r)||void 0!==t)&&!d(t))return y(r)||(r=function(t,r){if(h(o)&&(r=c(o,this,t,r)),!d(r))return r}),e[1]=r,u(nt,null,e)}});if(!Z[q]){var St=Z.valueOf;_(Z,q,(function(t){return c(St,this)}))}B(Q,Y),G[$]=!0},3948:function(t,r,n){var e=n(7854),o=n(8324),i=n(8509),u=n(6992),c=n(8880),s=n(5112),f=s("iterator"),a=s("toStringTag"),p=u.values,l=function(t,r){if(t){if(t[f]!==p)try{c(t,f,p)}catch(r){t[f]=p}if(t[a]||c(t,a,r),o[r])for(var n in u)if(t[n]!==u[n])try{c(t,n,u[n])}catch(r){t[n]=u[n]}}};for(var v in o)l(e[v]&&e[v].prototype,v);l(i,"DOMTokenList")},8516:function(t,r,n){t.exports=n(4869)},9985:function(t){"use strict";var r={delimiter:",",eol:"\r\n"};t.exports={options:r,parse:function(t,n){null==n&&(n=r.delimiter),t=(t=(t+="\n").replace(/(\r\n|\r)/g,"\n")).replace(/\s+$/,"")+"\n";for(var e=new RegExp("^(.*?)([\\"+n+"\\n])"),o=function(t){return"string"==typeof t&&t.search(/^[0-9\.]+$/)>=0&&(t=parseFloat(t)),t},i=[],u=[],c="";""!=t;)if((c=t.charAt(0))!==n)if("\n"!==c)if((c=(t=t.replace(/^\s+/,"")).charAt(0))!==n)if("="!==c||'"'!==t.charAt(1))if('"'===c)if('""'!=t.substr(0,2)){for(var s=1,f="";s<t.length;){var a=t.charAt(s),p=t.charAt(s+1);if('"'!=a||'"'!=p)if('"'!=a)f+=a,s++;else{if(s++,p==n){s++,u.push(o(f)),f="";break}if("\n"==p){s++,u.push(o(f)),i.push(u),u=[];break}s++}else s+=2,f+='"'}t=t.substr(s)}else u.push(""),t=t.substr(2);else{var l=e.exec(t);if(!l){u.push(o(t)),i.push(u),u=[];break}"\n"==l[2]?(u.push(o(l[1])),i.push(u),u=[]):l[2]==n&&u.push(o(l[1])),t=t.substr(l[0].length)}else t=t.substr(1);else console.log("delimiter"),u.push(""),t=t.substr(n.length);else u.push(""),i.push(u),u=[],t=t.substr(1);else t=t.substr(1),u.push("");return u.length>0&&i.push(u),i},stringify:function(t,n,e){null==n&&(n=r.delimiter),null==e&&(e=r.eol);var o=function(t,r){return function(r){var n=!1;return((r=""+r).indexOf("\n")>=0||r.indexOf("\r")>=0)&&(n=!0),r.indexOf(t)>=0&&(n=!0),r.indexOf('"')>=0&&(n=!0,r=r.replace(/\"/g,'""')),n&&(r='"'+r+'"'),r}}(n);if(null==t)return"";for(var i="",u=0;u<t.length;u++){var c=t[u];if(null!=c){for(var s=0;s<c.length;s++)c[s]=o(c[s]);i+=c.join(n)+e}else i+=e}return i=i.replace(/(\r\n|\r|\n)/g,e)}}},4869:function(t,r,n){"use strict";var e=n(9985);function o(){for(var t in this.rows=[],this.options=[],this.useHeader=!1,e.options)this.options[t]=e.options[t]}o.prototype.toString=function(){var t=this.options.delimiter,r=this.options.eol;return e.stringify(this.rows,t,r)},o.prototype.parse=function(t,r){this.rows=e.parse(t,r)},o.prototype.fromString=o.prototype.parse,o.prototype.stringify=o.prototype.toString,o.prototype.getCell=function(t,r){return this.rows[t][r]},o.prototype.setCell=function(t,r,n){for(var e=this.getColSize();this.rows.length<=t;){for(var o=[],i=0;i<e;i++)o.push("");this.rows.push(o)}this.rows[t][r]=n},o.prototype.getColSize=function(){return 0==this.rows.length?0:this.rows[0].length},o.prototype.setArray=function(t){this.rows=t},o.prototype.getArray=function(){return this.rows},o.prototype.getRowValues=function(t){return t>=this.length?[]:this.rows[t]},o.prototype.getColValues=function(t){var r=[];for(var n in this.rows){var e=this.rows[n];r.push(e[t])}return r},o.prototype.find=function(t,r,n){null==n&&(n=this.useHeader?1:0);for(var e=n;e<this.rows.length;e++){if(this.rows[e][t]==r)return e}return-1},o.prototype.findAll=function(t,r,n,e){var o=[];null==n&&(n=this.useHeader?1:0),null==e&&(e=this.rows.length);for(var i=n;i<this.rows.length;i++){var u=this.rows[i];if(u[t]==r&&(o.push(u),e<=o.length))break}return o},o.prototype.filter=function(t,r){return this.rows.filter((function(n,e,o){if(null==n)return!1;var i=n[t];return r(i,e,o)}))},o.prototype.sort=function(t,r){var n;if(null==r&&(r=!0),n=r?function(r,n){return r[t]>n[t]?1:-1}:function(r,n){return r[t]<n[t]?1:-1},this.useHeader){var e=this.rows.shift();this.rows.sort(n),this.rows.unshift(e)}else this.rows.sort(n)},o.prototype.sortNumber=function(t,r){var n;if(null==r&&(r=!0),n=r?function(r,n){return parseFloat(r[t])-parseFloat(n[t])}:function(r,n){return parseFloat(n[t])-parseFloat(r[t])},this.useHeader){var e=this.rows.shift();this.rows.sort(n),this.rows.unshift(e)}else this.rows.sort(n)},o.prototype.insertRow=function(t,r){this.rows.splice(t,0,r)},o.prototype.insert=o.prototype.insertRow,o.prototype.add=function(t){this.rows.push(t)},o.prototype.deleteRow=function(t){return this.rows.splice(t,1)},o.prototype.insertCol=function(t,r){this.rows.map((function(n,e,o){return n.splice(t,0,r[e]),n}))},o.prototype.deleteCol=function(t){this.rows.map((function(r,n,e){return r.splice(t,1),r}))},Object.defineProperty(o.prototype,"length",{get:function(){return null==this.rows?0:this.rows.length}}),e.CSVObject=o,t.exports=e}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var i=r[e]={exports:{}};return t[e](i,i.exports,n),i.exports}n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}();n(8160)}();
|
|
1
|
+
!function(){var t={8516:function(t,r,e){t.exports=e(4869)},9985:function(t){"use strict";var r={delimiter:",",eol:"\r\n"};t.exports={options:r,parse:function(t,e){null==e&&(e=r.delimiter),t=(t=(t+="\n").replace(/(\r\n|\r)/g,"\n")).replace(/\s+$/,"")+"\n";for(var o=new RegExp("^(.*?)([\\"+e+"\\n])"),n=function(t){return"string"==typeof t&&t.search(/^[0-9\.]+$/)>=0&&(t=parseFloat(t)),t},s=[],i=[],u="";""!=t;)if((u=t.charAt(0))!==e)if("\n"!==u)if((u=(t=t.replace(/^\s+/,"")).charAt(0))!==e)if("="!==u||'"'!==t.charAt(1))if('"'===u)if('""'!=t.substr(0,2)){for(var p=1,f="";p<t.length;){var l=t.charAt(p),h=t.charAt(p+1);if('"'!=l||'"'!=h)if('"'!=l)f+=l,p++;else{if(p++,h==e){p++,i.push(n(f)),f="";break}if("\n"==h){p++,i.push(n(f)),s.push(i),i=[];break}p++}else p+=2,f+='"'}t=t.substr(p)}else i.push(""),t=t.substr(2);else{var a=o.exec(t);if(!a){i.push(n(t)),s.push(i),i=[];break}"\n"==a[2]?(i.push(n(a[1])),s.push(i),i=[]):a[2]==e&&i.push(n(a[1])),t=t.substr(a[0].length)}else t=t.substr(1);else console.log("delimiter"),i.push(""),t=t.substr(e.length);else i.push(""),s.push(i),i=[],t=t.substr(1);else t=t.substr(1),i.push("");return i.length>0&&s.push(i),s},stringify:function(t,e,o){null==e&&(e=r.delimiter),null==o&&(o=r.eol);var n=function(t,r){return function(r){var e=!1;return((r=""+r).indexOf("\n")>=0||r.indexOf("\r")>=0)&&(e=!0),r.indexOf(t)>=0&&(e=!0),r.indexOf('"')>=0&&(e=!0,r=r.replace(/\"/g,'""')),e&&(r='"'+r+'"'),r}}(e);if(null==t)return"";for(var s="",i=0;i<t.length;i++){var u=t[i];if(null!=u){for(var p=0;p<u.length;p++)u[p]=n(u[p]);s+=u.join(e)+o}else s+=o}return s=s.replace(/(\r\n|\r|\n)/g,o)}}},4869:function(t,r,e){"use strict";var o=e(9985);function n(){for(var t in this.rows=[],this.options=[],this.useHeader=!1,o.options)this.options[t]=o.options[t]}n.prototype.toString=function(){var t=this.options.delimiter,r=this.options.eol;return o.stringify(this.rows,t,r)},n.prototype.parse=function(t,r){this.rows=o.parse(t,r)},n.prototype.fromString=n.prototype.parse,n.prototype.stringify=n.prototype.toString,n.prototype.getCell=function(t,r){return this.rows[t][r]},n.prototype.setCell=function(t,r,e){for(var o=this.getColSize();this.rows.length<=t;){for(var n=[],s=0;s<o;s++)n.push("");this.rows.push(n)}this.rows[t][r]=e},n.prototype.getColSize=function(){return 0==this.rows.length?0:this.rows[0].length},n.prototype.setArray=function(t){this.rows=t},n.prototype.getArray=function(){return this.rows},n.prototype.getRowValues=function(t){return t>=this.length?[]:this.rows[t]},n.prototype.getColValues=function(t){var r=[];for(var e in this.rows){var o=this.rows[e];r.push(o[t])}return r},n.prototype.find=function(t,r,e){null==e&&(e=this.useHeader?1:0);for(var o=e;o<this.rows.length;o++){if(this.rows[o][t]==r)return o}return-1},n.prototype.findAll=function(t,r,e,o){var n=[];null==e&&(e=this.useHeader?1:0),null==o&&(o=this.rows.length);for(var s=e;s<this.rows.length;s++){var i=this.rows[s];if(i[t]==r&&(n.push(i),o<=n.length))break}return n},n.prototype.filter=function(t,r){return this.rows.filter((function(e,o,n){if(null==e)return!1;var s=e[t];return r(s,o,n)}))},n.prototype.sort=function(t,r){var e;if(null==r&&(r=!0),e=r?function(r,e){return r[t]>e[t]?1:-1}:function(r,e){return r[t]<e[t]?1:-1},this.useHeader){var o=this.rows.shift();this.rows.sort(e),this.rows.unshift(o)}else this.rows.sort(e)},n.prototype.sortNumber=function(t,r){var e;if(null==r&&(r=!0),e=r?function(r,e){return parseFloat(r[t])-parseFloat(e[t])}:function(r,e){return parseFloat(e[t])-parseFloat(r[t])},this.useHeader){var o=this.rows.shift();this.rows.sort(e),this.rows.unshift(o)}else this.rows.sort(e)},n.prototype.insertRow=function(t,r){this.rows.splice(t,0,r)},n.prototype.insert=n.prototype.insertRow,n.prototype.add=function(t){this.rows.push(t)},n.prototype.deleteRow=function(t){return this.rows.splice(t,1)},n.prototype.insertCol=function(t,r){this.rows.map((function(e,o,n){return e.splice(t,0,r[o]),e}))},n.prototype.deleteCol=function(t){this.rows.map((function(r,e,o){return r.splice(t,1),r}))},Object.defineProperty(n.prototype,"length",{get:function(){return null==this.rows?0:this.rows.length}}),o.CSVObject=n,t.exports=o}},r={};function e(o){var n=r[o];if(void 0!==n)return n.exports;var s=r[o]={exports:{}};return t[o](s,s.exports,e),s.exports}!function(){"use strict";var t=e(8516);const r={"初期化":{type:"func",josi:[],pure:!0,fn:function(t){}},"CSV取得":{type:"func",josi:[["を","の","で"]],pure:!0,fn:function(r){return t.options.delimiter=",",t.parse(r)}},"TSV取得":{type:"func",josi:[["を","の","で"]],pure:!0,fn:function(r){return t.options.delimiter="\t",t.parse(r)}},"表CSV変換":{type:"func",josi:[["を"]],pure:!0,fn:function(r){return t.options.delimiter=",",t.stringify(r)}},"表TSV変換":{type:"func",josi:[["を"]],pure:!0,fn:function(r){return t.options.delimiter="\t",t.stringify(r)}}};"object"==typeof navigator&&"object"==typeof navigator.nako3&&navigator.nako3.addPluginObject("PluginCSV",r)}()}();
|