clipboard-parser
Advanced tools
Comparing version 2.0.1 to 2.1.0
/*! | ||
* clipboard-parser v2.0.1 | ||
* clipboard-parser v2.1.0 | ||
* 剪贴板内容解析器 | ||
* (c) 2020-2021 saqqdy | ||
* (c) 2020-2022 saqqdy | ||
* Released under the MIT License. | ||
@@ -13,2 +13,4 @@ */ | ||
import 'core-js/modules/es.string.replace.js'; | ||
import 'core-js/modules/es.array.includes.js'; | ||
import 'core-js/modules/es.string.includes.js'; | ||
import 'core-js/modules/es.string.split.js'; | ||
@@ -21,5 +23,5 @@ import 'core-js/modules/es.regexp.constructor.js'; | ||
var fromEntries = Object.fromEntries || function fromEntries(iterable) { | ||
var entries = Array.isArray(iterable) ? createEntries(iterable) : 'entries' in iterable ? iterable.entries() : iterable; | ||
var object = {}; | ||
var entry; | ||
var entries = Array.isArray(iterable) ? createEntries(iterable) : 'entries' in iterable ? iterable.entries() : iterable, | ||
object = {}, | ||
entry; | ||
@@ -98,5 +100,5 @@ while ((entry = entries.next()) && !entry.done) { | ||
var text = clipboardData.getData('Text').replace(/\r\n/g, '\n').replace(/\r/g, '\n').replace(/[\n\r]+$/, ''), | ||
isRequestParam = text.indexOf('@RequestParam') > -1, | ||
isApiModel = text.indexOf('@ApiModelProperty') > -1 || text.indexOf('private ') > -1, | ||
notTableData = text.indexOf('\t') === -1 || isRequestParam, | ||
isRequestParam = text.includes('@RequestParam'), | ||
isApiModel = text.includes('@ApiModelProperty') || text.includes('private '), | ||
notTableData = !text.includes('\t') || isRequestParam, | ||
reg, | ||
@@ -144,3 +146,3 @@ len, | ||
if (b.indexOf('=') === -1 && b.indexOf(',') === -1) { | ||
if (!b.includes('=') && !b.includes(',')) { | ||
param1 = { | ||
@@ -161,3 +163,3 @@ value: b.replace(/^"([\s\S]*)"$/, '$1') | ||
console.info('没有ApiParam定义'); | ||
} else if (d.indexOf('=') === -1 && d.indexOf(',') === -1) { | ||
} else if (!d.includes('=') && !d.includes(',')) { | ||
param2 = { | ||
@@ -191,3 +193,3 @@ value: d.replace(/^"([\s\S]*)"$/, '$1') | ||
console.info('没有ApiParam定义'); | ||
} else if (c.indexOf('=') === -1 && c.indexOf(',') === -1) { | ||
} else if (!c.includes('=') && !c.includes(',')) { | ||
param1 = { | ||
@@ -194,0 +196,0 @@ value: c.replace(/^"([\s\S]*)"$/, '$1') |
/*! | ||
* clipboard-parser v2.0.1 | ||
* clipboard-parser v2.1.0 | ||
* 剪贴板内容解析器 | ||
* (c) 2020-2021 saqqdy | ||
* (c) 2020-2022 saqqdy | ||
* Released under the MIT License. | ||
@@ -17,2 +17,4 @@ */ | ||
require('core-js/modules/es.string.replace.js'); | ||
require('core-js/modules/es.array.includes.js'); | ||
require('core-js/modules/es.string.includes.js'); | ||
require('core-js/modules/es.string.split.js'); | ||
@@ -25,5 +27,5 @@ require('core-js/modules/es.regexp.constructor.js'); | ||
var fromEntries = Object.fromEntries || function fromEntries(iterable) { | ||
var entries = Array.isArray(iterable) ? createEntries(iterable) : 'entries' in iterable ? iterable.entries() : iterable; | ||
var object = {}; | ||
var entry; | ||
var entries = Array.isArray(iterable) ? createEntries(iterable) : 'entries' in iterable ? iterable.entries() : iterable, | ||
object = {}, | ||
entry; | ||
@@ -102,5 +104,5 @@ while ((entry = entries.next()) && !entry.done) { | ||
var text = clipboardData.getData('Text').replace(/\r\n/g, '\n').replace(/\r/g, '\n').replace(/[\n\r]+$/, ''), | ||
isRequestParam = text.indexOf('@RequestParam') > -1, | ||
isApiModel = text.indexOf('@ApiModelProperty') > -1 || text.indexOf('private ') > -1, | ||
notTableData = text.indexOf('\t') === -1 || isRequestParam, | ||
isRequestParam = text.includes('@RequestParam'), | ||
isApiModel = text.includes('@ApiModelProperty') || text.includes('private '), | ||
notTableData = !text.includes('\t') || isRequestParam, | ||
reg, | ||
@@ -148,3 +150,3 @@ len, | ||
if (b.indexOf('=') === -1 && b.indexOf(',') === -1) { | ||
if (!b.includes('=') && !b.includes(',')) { | ||
param1 = { | ||
@@ -165,3 +167,3 @@ value: b.replace(/^"([\s\S]*)"$/, '$1') | ||
console.info('没有ApiParam定义'); | ||
} else if (d.indexOf('=') === -1 && d.indexOf(',') === -1) { | ||
} else if (!d.includes('=') && !d.includes(',')) { | ||
param2 = { | ||
@@ -195,3 +197,3 @@ value: d.replace(/^"([\s\S]*)"$/, '$1') | ||
console.info('没有ApiParam定义'); | ||
} else if (c.indexOf('=') === -1 && c.indexOf(',') === -1) { | ||
} else if (!c.includes('=') && !c.includes(',')) { | ||
param1 = { | ||
@@ -225,2 +227,2 @@ value: c.replace(/^"([\s\S]*)"$/, '$1') | ||
exports.clipboardParser = clipboardParser; | ||
exports['default'] = clipboardParser; | ||
exports["default"] = clipboardParser; |
/*! | ||
* clipboard-parser v2.0.1 | ||
* clipboard-parser v2.1.0 | ||
* 剪贴板内容解析器 | ||
* (c) 2021-2021 saqqdy | ||
* (c) 2021-2022 saqqdy | ||
* Released under the MIT License. | ||
*/ | ||
!function(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define("clipboardParser",[],r):"object"==typeof exports?exports.clipboardParser=r():t.clipboardParser=r()}("undefined"!=typeof self?self:this,(function(){return(()=>{var t={9662:(t,r,e)=>{var n=e(614),o=e(6330);t.exports=function(t){if(n(t))return t;throw TypeError(o(t)+" is not a function")}},9483:(t,r,e)=>{var n=e(4411),o=e(6330);t.exports=function(t){if(n(t))return t;throw TypeError(o(t)+" is not a constructor")}},6077:(t,r,e)=>{var n=e(614);t.exports=function(t){if("object"==typeof t||n(t))return t;throw TypeError("Can't set "+String(t)+" as a prototype")}},1223:(t,r,e)=>{var n=e(5112),o=e(30),i=e(3070),a=n("unscopables"),u=Array.prototype;null==u[a]&&i.f(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},1530:(t,r,e)=>{"use strict";var n=e(8710).charAt;t.exports=function(t,r,e){return r+(e?n(t,r).length:1)}},9670:(t,r,e)=>{var n=e(111);t.exports=function(t){if(n(t))return t;throw TypeError(String(t)+" is not an object")}},1318:(t,r,e)=>{var n=e(5656),o=e(7466),i=e(1400),a=function(t){return function(r,e,a){var u,c=n(r),s=o(c.length),l=i(a,s);if(t&&e!=e){for(;s>l;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((t||l in c)&&c[l]===e)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},2092:(t,r,e)=>{var n=e(9974),o=e(8361),i=e(7908),a=e(7466),u=e(5417),c=[].push,s=function(t){var r=1==t,e=2==t,s=3==t,l=4==t,f=6==t,p=7==t,v=5==t||f;return function(g,d,h,x){for(var y,b,m=i(g),O=o(m),S=n(d,h,3),w=a(O.length),E=0,j=x||u,A=r?j(g,w):e||p?j(g,0):void 0;w>E;E++)if((v||E in O)&&(b=S(y=O[E],E,m),t))if(r)A[E]=b;else if(b)switch(t){case 3:return!0;case 5:return y;case 6:return E;case 2:c.call(A,y)}else switch(t){case 4:return!1;case 7:c.call(A,y)}return f?-1:s||l?l: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)}},1194:(t,r,e)=>{var n=e(7293),o=e(5112),i=e(7392),a=o("species");t.exports=function(t){return i>=51||!n((function(){var r=[];return(r.constructor={})[a]=function(){return{foo:1}},1!==r[t](Boolean).foo}))}},9341:(t,r,e)=>{"use strict";var n=e(7293);t.exports=function(t,r){var e=[][t];return!!e&&n((function(){e.call(null,r||function(){throw 1},1)}))}},7475:(t,r,e)=>{var n=e(3157),o=e(4411),i=e(111),a=e(5112)("species");t.exports=function(t){var r;return n(t)&&(r=t.constructor,(o(r)&&(r===Array||n(r.prototype))||i(r)&&null===(r=r[a]))&&(r=void 0)),void 0===r?Array:r}},5417:(t,r,e)=>{var n=e(7475);t.exports=function(t,r){return new(n(t))(0===r?0:r)}},4326:t=>{var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},648:(t,r,e)=>{var n=e(1694),o=e(614),i=e(4326),a=e(5112)("toStringTag"),u="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=Object(t),a))?e:u?i(r):"Object"==(n=i(r))&&o(r.callee)?"Arguments":n}},9920:(t,r,e)=>{var n=e(6656),o=e(3887),i=e(1236),a=e(3070);t.exports=function(t,r){for(var e=o(r),u=a.f,c=i.f,s=0;s<e.length;s++){var l=e[s];n(t,l)||u(t,l,c(r,l))}}},8544:(t,r,e)=>{var n=e(7293);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4994:(t,r,e)=>{"use strict";var n=e(3383).IteratorPrototype,o=e(30),i=e(9114),a=e(8003),u=e(7497),c=function(){return this};t.exports=function(t,r,e){var s=r+" Iterator";return t.prototype=o(n,{next:i(1,e)}),a(t,s,!1,!0),u[s]=c,t}},8880:(t,r,e)=>{var n=e(9781),o=e(3070),i=e(9114);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},9114:t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},6135:(t,r,e)=>{"use strict";var n=e(4948),o=e(3070),i=e(9114);t.exports=function(t,r,e){var a=n(r);a in t?o.f(t,a,i(0,e)):t[a]=e}},654:(t,r,e)=>{"use strict";var n=e(2109),o=e(1913),i=e(6530),a=e(614),u=e(4994),c=e(9518),s=e(7674),l=e(8003),f=e(8880),p=e(1320),v=e(5112),g=e(7497),d=e(3383),h=i.PROPER,x=i.CONFIGURABLE,y=d.IteratorPrototype,b=d.BUGGY_SAFARI_ITERATORS,m=v("iterator"),O="keys",S="values",w="entries",E=function(){return this};t.exports=function(t,r,e,i,v,d,j){u(e,r,i);var A,R,P,T=function(t){if(t===v&&k)return k;if(!b&&t in _)return _[t];switch(t){case O:case S:case w:return function(){return new e(this,t)}}return function(){return new e(this)}},I=r+" Iterator",L=!1,_=t.prototype,$=_[m]||_["@@iterator"]||v&&_[v],k=!b&&$||T(v),M="Array"==r&&_.entries||$;if(M&&(A=c(M.call(new t)))!==Object.prototype&&A.next&&(o||c(A)===y||(s?s(A,y):a(A[m])||p(A,m,E)),l(A,I,!0,!0),o&&(g[I]=E)),h&&v==S&&$&&$.name!==S&&(!o&&x?f(_,"name",S):(L=!0,k=function(){return $.call(this)})),v)if(R={values:T(S),keys:d?k:T(O),entries:T(w)},j)for(P in R)(b||L||!(P in _))&&p(_,P,R[P]);else n({target:r,proto:!0,forced:b||L},R);return o&&!j||_[m]===k||p(_,m,k,{name:v}),g[r]=k,R}},9781:(t,r,e)=>{var n=e(7293);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(t,r,e)=>{var n=e(7854),o=e(111),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},8324: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:(t,r,e)=>{var n=e(317)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},8113:(t,r,e)=>{var n=e(5005);t.exports=n("navigator","userAgent")||""},7392:(t,r,e)=>{var n,o,i=e(7854),a=e(8113),u=i.process,c=i.Deno,s=u&&u.versions||c&&c.version,l=s&&s.v8;l?o=(n=l.split("."))[0]<4?1:n[0]+n[1]:a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=n[1]),t.exports=o&&+o},748:t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(t,r,e)=>{var n=e(7854),o=e(1236).f,i=e(8880),a=e(1320),u=e(3505),c=e(9920),s=e(4705);t.exports=function(t,r){var e,l,f,p,v,g=t.target,d=t.global,h=t.stat;if(e=d?n:h?n[g]||u(g,{}):(n[g]||{}).prototype)for(l in r){if(p=r[l],f=t.noTargetGet?(v=o(e,l))&&v.value:e[l],!s(d?l:g+(h?".":"#")+l,t.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(t.sham||f&&f.sham)&&i(p,"sham",!0),a(e,l,p,t)}}},7293:t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:(t,r,e)=>{"use strict";e(4916);var n=e(1320),o=e(2261),i=e(7293),a=e(5112),u=e(8880),c=a("species"),s=RegExp.prototype;t.exports=function(t,r,e,l){var f=a(t),p=!i((function(){var r={};return r[f]=function(){return 7},7!=""[t](r)})),v=p&&!i((function(){var r=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[c]=function(){return e},e.flags="",e[f]=/./[f]),e.exec=function(){return r=!0,null},e[f](""),!r}));if(!p||!v||e){var g=/./[f],d=r(f,""[t],(function(t,r,e,n,i){var a=r.exec;return a===o||a===s.exec?p&&!i?{done:!0,value:g.call(r,e,n)}:{done:!0,value:t.call(e,r,n)}:{done:!1}}));n(String.prototype,t,d[0]),n(s,f,d[1])}l&&u(s[f],"sham",!0)}},9974:(t,r,e)=>{var n=e(9662);t.exports=function(t,r,e){if(n(t),void 0===r)return t;switch(e){case 0:return function(){return t.call(r)};case 1:return function(e){return t.call(r,e)};case 2:return function(e,n){return t.call(r,e,n)};case 3:return function(e,n,o){return t.call(r,e,n,o)}}return function(){return t.apply(r,arguments)}}},6530:(t,r,e)=>{var n=e(9781),o=e(6656),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,u=o(i,"name"),c=u&&"something"===function(){}.name,s=u&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:c,CONFIGURABLE:s}},5005:(t,r,e)=>{var n=e(7854),o=e(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(n[t]):n[t]&&n[t][r]}},1246:(t,r,e)=>{var n=e(648),o=e(8173),i=e(7497),a=e(5112)("iterator");t.exports=function(t){if(null!=t)return o(t,a)||o(t,"@@iterator")||i[n(t)]}},8554:(t,r,e)=>{var n=e(9662),o=e(9670),i=e(1246);t.exports=function(t,r){var e=arguments.length<2?i(t):r;if(n(e))return o(e.call(t));throw TypeError(String(t)+" is not iterable")}},8173:(t,r,e)=>{var n=e(9662);t.exports=function(t,r){var e=t[r];return null==e?void 0:n(e)}},647:(t,r,e)=>{var n=e(7908),o=Math.floor,i="".replace,a=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,u=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,r,e,c,s,l){var f=e+t.length,p=c.length,v=u;return void 0!==s&&(s=n(s),v=a),i.call(l,v,(function(n,i){var a;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return r.slice(0,e);case"'":return r.slice(f);case"<":a=s[i.slice(1,-1)];break;default:var u=+i;if(0===u)return n;if(u>p){var l=o(u/10);return 0===l?n:l<=p?void 0===c[l-1]?i.charAt(1):c[l-1]+i.charAt(1):n}a=c[u-1]}return void 0===a?"":a}))}},7854:(t,r,e)=>{var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},6656:(t,r,e)=>{var n=e(7908),o={}.hasOwnProperty;t.exports=Object.hasOwn||function(t,r){return o.call(n(t),r)}},3501:t=>{t.exports={}},490:(t,r,e)=>{var n=e(5005);t.exports=n("document","documentElement")},4664:(t,r,e)=>{var n=e(9781),o=e(7293),i=e(317);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(t,r,e)=>{var n=e(7293),o=e(4326),i="".split;t.exports=n((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},9587:(t,r,e)=>{var n=e(614),o=e(111),i=e(7674);t.exports=function(t,r,e){var a,u;return i&&n(a=r.constructor)&&a!==e&&o(u=a.prototype)&&u!==e.prototype&&i(t,u),t}},2788:(t,r,e)=>{var n=e(614),o=e(5465),i=Function.toString;n(o.inspectSource)||(o.inspectSource=function(t){return i.call(t)}),t.exports=o.inspectSource},9909:(t,r,e)=>{var n,o,i,a=e(8536),u=e(7854),c=e(111),s=e(8880),l=e(6656),f=e(5465),p=e(6200),v=e(3501),g="Object already initialized",d=u.WeakMap;if(a||f.state){var h=f.state||(f.state=new d),x=h.get,y=h.has,b=h.set;n=function(t,r){if(y.call(h,t))throw new TypeError(g);return r.facade=t,b.call(h,t,r),r},o=function(t){return x.call(h,t)||{}},i=function(t){return y.call(h,t)}}else{var m=p("state");v[m]=!0,n=function(t,r){if(l(t,m))throw new TypeError(g);return r.facade=t,s(t,m,r),r},o=function(t){return l(t,m)?t[m]:{}},i=function(t){return l(t,m)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(r){var e;if(!c(r)||(e=o(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return e}}}},7659:(t,r,e)=>{var n=e(5112),o=e(7497),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},3157:(t,r,e)=>{var n=e(4326);t.exports=Array.isArray||function(t){return"Array"==n(t)}},614:t=>{t.exports=function(t){return"function"==typeof t}},4411:(t,r,e)=>{var n=e(7293),o=e(614),i=e(648),a=e(5005),u=e(2788),c=[],s=a("Reflect","construct"),l=/^\s*(?:class|function)\b/,f=l.exec,p=!l.exec((function(){})),v=function(t){if(!o(t))return!1;try{return s(Object,c,t),!0}catch(t){return!1}};t.exports=!s||n((function(){var t;return v(v.call)||!v(Object)||!v((function(){t=!0}))||t}))?function(t){if(!o(t))return!1;switch(i(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return p||!!f.call(l,u(t))}:v},4705:(t,r,e)=>{var n=e(7293),o=e(614),i=/#|\.prototype\./,a=function(t,r){var e=c[u(t)];return e==l||e!=s&&(o(r)?n(r):!!r)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=a.data={},s=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},111:(t,r,e)=>{var n=e(614);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},1913:t=>{t.exports=!1},7850:(t,r,e)=>{var n=e(111),o=e(4326),i=e(5112)("match");t.exports=function(t){var r;return n(t)&&(void 0!==(r=t[i])?!!r:"RegExp"==o(t))}},2190:(t,r,e)=>{var n=e(614),o=e(5005),i=e(3307);t.exports=i?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return n(r)&&Object(t)instanceof r}},408:(t,r,e)=>{var n=e(9670),o=e(7659),i=e(7466),a=e(9974),u=e(8554),c=e(1246),s=e(9212),l=function(t,r){this.stopped=t,this.result=r};t.exports=function(t,r,e){var f,p,v,g,d,h,x,y=e&&e.that,b=!(!e||!e.AS_ENTRIES),m=!(!e||!e.IS_ITERATOR),O=!(!e||!e.INTERRUPTED),S=a(r,y,1+b+O),w=function(t){return f&&s(f,"normal",t),new l(!0,t)},E=function(t){return b?(n(t),O?S(t[0],t[1],w):S(t[0],t[1])):O?S(t,w):S(t)};if(m)f=t;else{if(!(p=c(t)))throw TypeError(String(t)+" is not iterable");if(o(p)){for(v=0,g=i(t.length);g>v;v++)if((d=E(t[v]))&&d instanceof l)return d;return new l(!1)}f=u(t,p)}for(h=f.next;!(x=h.call(f)).done;){try{d=E(x.value)}catch(t){s(f,"throw",t)}if("object"==typeof d&&d&&d instanceof l)return d}return new l(!1)}},9212:(t,r,e)=>{var n=e(9670),o=e(8173);t.exports=function(t,r,e){var i,a;n(t);try{if(!(i=o(t,"return"))){if("throw"===r)throw e;return e}i=i.call(t)}catch(t){a=!0,i=t}if("throw"===r)throw e;if(a)throw i;return n(i),e}},3383:(t,r,e)=>{"use strict";var n,o,i,a=e(7293),u=e(614),c=e(30),s=e(9518),l=e(1320),f=e(5112),p=e(1913),v=f("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(n=o):g=!0),null==n||a((function(){var t={};return n[v].call(t)!==t}))?n={}:p&&(n=c(n)),u(n[v])||l(n,v,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},7497:t=>{t.exports={}},133:(t,r,e)=>{var n=e(7392),o=e(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},8536:(t,r,e)=>{var n=e(7854),o=e(614),i=e(2788),a=n.WeakMap;t.exports=o(a)&&/native code/.test(i(a))},30:(t,r,e)=>{var n,o=e(9670),i=e(6048),a=e(748),u=e(3501),c=e(490),s=e(317),l=e(6200),f=l("IE_PROTO"),p=function(){},v=function(t){return"<script>"+t+"</"+"script>"},g=function(t){t.write(v("")),t.close();var r=t.parentWindow.Object;return t=null,r},d=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r;d="undefined"!=typeof document?document.domain&&n?g(n):((r=s("iframe")).style.display="none",c.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(v("document.F=Object")),t.close(),t.F):g(n);for(var e=a.length;e--;)delete d.prototype[a[e]];return d()};u[f]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(p.prototype=o(t),e=new p,p.prototype=null,e[f]=t):e=d(),void 0===r?e:i(e,r)}},6048:(t,r,e)=>{var n=e(9781),o=e(3070),i=e(9670),a=e(1956);t.exports=n?Object.defineProperties:function(t,r){i(t);for(var e,n=a(r),u=n.length,c=0;u>c;)o.f(t,e=n[c++],r[e]);return t}},3070:(t,r,e)=>{var n=e(9781),o=e(4664),i=e(9670),a=e(4948),u=Object.defineProperty;r.f=n?u:function(t,r,e){if(i(t),r=a(r),i(e),o)try{return u(t,r,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},1236:(t,r,e)=>{var n=e(9781),o=e(5296),i=e(9114),a=e(5656),u=e(4948),c=e(6656),s=e(4664),l=Object.getOwnPropertyDescriptor;r.f=n?l:function(t,r){if(t=a(t),r=u(r),s)try{return l(t,r)}catch(t){}if(c(t,r))return i(!o.f.call(t,r),t[r])}},8006:(t,r,e)=>{var n=e(6324),o=e(748).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},5181:(t,r)=>{r.f=Object.getOwnPropertySymbols},9518:(t,r,e)=>{var n=e(6656),o=e(614),i=e(7908),a=e(6200),u=e(8544),c=a("IE_PROTO"),s=Object.prototype;t.exports=u?Object.getPrototypeOf:function(t){var r=i(t);if(n(r,c))return r[c];var e=r.constructor;return o(e)&&r instanceof e?e.prototype:r instanceof Object?s:null}},6324:(t,r,e)=>{var n=e(6656),o=e(5656),i=e(1318).indexOf,a=e(3501);t.exports=function(t,r){var e,u=o(t),c=0,s=[];for(e in u)!n(a,e)&&n(u,e)&&s.push(e);for(;r.length>c;)n(u,e=r[c++])&&(~i(s,e)||s.push(e));return s}},1956:(t,r,e)=>{var n=e(6324),o=e(748);t.exports=Object.keys||function(t){return n(t,o)}},5296:(t,r)=>{"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},7674:(t,r,e)=>{var n=e(9670),o=e(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(e,[]),r=e instanceof Array}catch(t){}return function(e,i){return n(e),o(i),r?t.call(e,i):e.__proto__=i,e}}():void 0)},288:(t,r,e)=>{"use strict";var n=e(1694),o=e(648);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},2140:(t,r,e)=>{var n=e(614),o=e(111);t.exports=function(t,r){var e,i;if("string"===r&&n(e=t.toString)&&!o(i=e.call(t)))return i;if(n(e=t.valueOf)&&!o(i=e.call(t)))return i;if("string"!==r&&n(e=t.toString)&&!o(i=e.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},3887:(t,r,e)=>{var n=e(5005),o=e(8006),i=e(5181),a=e(9670);t.exports=n("Reflect","ownKeys")||function(t){var r=o.f(a(t)),e=i.f;return e?r.concat(e(t)):r}},1320:(t,r,e)=>{var n=e(7854),o=e(614),i=e(6656),a=e(8880),u=e(3505),c=e(2788),s=e(9909),l=e(6530).CONFIGURABLE,f=s.get,p=s.enforce,v=String(String).split("String");(t.exports=function(t,r,e,c){var s,f=!!c&&!!c.unsafe,g=!!c&&!!c.enumerable,d=!!c&&!!c.noTargetGet,h=c&&void 0!==c.name?c.name:r;o(e)&&("Symbol("===String(h).slice(0,7)&&(h="["+String(h).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(e,"name")||l&&e.name!==h)&&a(e,"name",h),(s=p(e)).source||(s.source=v.join("string"==typeof h?h:""))),t!==n?(f?!d&&t[r]&&(g=!0):delete t[r],g?t[r]=e:a(t,r,e)):g?t[r]=e:u(r,e)})(Function.prototype,"toString",(function(){return o(this)&&f(this).source||c(this)}))},7651:(t,r,e)=>{var n=e(9670),o=e(614),i=e(4326),a=e(2261);t.exports=function(t,r){var e=t.exec;if(o(e)){var u=e.call(t,r);return null!==u&&n(u),u}if("RegExp"===i(t))return a.call(t,r);throw TypeError("RegExp#exec called on incompatible receiver")}},2261:(t,r,e)=>{"use strict";var n,o,i=e(1340),a=e(7066),u=e(2999),c=e(2309),s=e(30),l=e(9909).get,f=e(9441),p=e(7168),v=RegExp.prototype.exec,g=c("native-string-replace",String.prototype.replace),d=v,h=(n=/a/,o=/b*/g,v.call(n,"a"),v.call(o,"a"),0!==n.lastIndex||0!==o.lastIndex),x=u.UNSUPPORTED_Y||u.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(h||y||x||f||p)&&(d=function(t){var r,e,n,o,u,c,f,p=this,b=l(p),m=i(t),O=b.raw;if(O)return O.lastIndex=p.lastIndex,r=d.call(O,m),p.lastIndex=O.lastIndex,r;var S=b.groups,w=x&&p.sticky,E=a.call(p),j=p.source,A=0,R=m;if(w&&(-1===(E=E.replace("y","")).indexOf("g")&&(E+="g"),R=m.slice(p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==m.charAt(p.lastIndex-1))&&(j="(?: "+j+")",R=" "+R,A++),e=new RegExp("^(?:"+j+")",E)),y&&(e=new RegExp("^"+j+"$(?!\\s)",E)),h&&(n=p.lastIndex),o=v.call(w?e:p,R),w?o?(o.input=o.input.slice(A),o[0]=o[0].slice(A),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:h&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),y&&o&&o.length>1&&g.call(o[0],e,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(o[u]=void 0)})),o&&S)for(o.groups=c=s(null),u=0;u<S.length;u++)c[(f=S[u])[0]]=o[f[1]];return o}),t.exports=d},7066:(t,r,e)=>{"use strict";var n=e(9670);t.exports=function(){var t=n(this),r="";return t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.sticky&&(r+="y"),r}},2999:(t,r,e)=>{var n=e(7293),o=e(7854).RegExp;r.UNSUPPORTED_Y=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),r.BROKEN_CARET=n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},9441:(t,r,e)=>{var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},7168:(t,r,e)=>{var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},4488:t=>{t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},3505:(t,r,e)=>{var n=e(7854);t.exports=function(t,r){try{Object.defineProperty(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},6340:(t,r,e)=>{"use strict";var n=e(5005),o=e(3070),i=e(5112),a=e(9781),u=i("species");t.exports=function(t){var r=n(t),e=o.f;a&&r&&!r[u]&&e(r,u,{configurable:!0,get:function(){return this}})}},8003:(t,r,e)=>{var n=e(3070).f,o=e(6656),i=e(5112)("toStringTag");t.exports=function(t,r,e){t&&!o(t=e?t:t.prototype,i)&&n(t,i,{configurable:!0,value:r})}},6200:(t,r,e)=>{var n=e(2309),o=e(9711),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:(t,r,e)=>{var n=e(7854),o=e(3505),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},2309:(t,r,e)=>{var n=e(1913),o=e(5465);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.18.0",mode:n?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:(t,r,e)=>{var n=e(9670),o=e(9483),i=e(5112)("species");t.exports=function(t,r){var e,a=n(t).constructor;return void 0===a||null==(e=n(a)[i])?r:o(e)}},8710:(t,r,e)=>{var n=e(9958),o=e(1340),i=e(4488),a=function(t){return function(r,e){var a,u,c=o(i(r)),s=n(e),l=c.length;return s<0||s>=l?t?"":void 0:(a=c.charCodeAt(s))<55296||a>56319||s+1===l||(u=c.charCodeAt(s+1))<56320||u>57343?t?c.charAt(s):a:t?c.slice(s,s+2):u-56320+(a-55296<<10)+65536}};t.exports={codeAt:a(!1),charAt:a(!0)}},1400:(t,r,e)=>{var n=e(9958),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},5656:(t,r,e)=>{var n=e(8361),o=e(4488);t.exports=function(t){return n(o(t))}},9958:t=>{var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:r)(t)}},7466:(t,r,e)=>{var n=e(9958),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},7908:(t,r,e)=>{var n=e(4488);t.exports=function(t){return Object(n(t))}},7593:(t,r,e)=>{var n=e(111),o=e(2190),i=e(8173),a=e(2140),u=e(5112)("toPrimitive");t.exports=function(t,r){if(!n(t)||o(t))return t;var e,c=i(t,u);if(c){if(void 0===r&&(r="default"),e=c.call(t,r),!n(e)||o(e))return e;throw TypeError("Can't convert object to primitive value")}return void 0===r&&(r="number"),a(t,r)}},4948:(t,r,e)=>{var n=e(7593),o=e(2190);t.exports=function(t){var r=n(t,"string");return o(r)?r:String(r)}},1694:(t,r,e)=>{var n={};n[e(5112)("toStringTag")]="z",t.exports="[object z]"===String(n)},1340:(t,r,e)=>{var n=e(648);t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)}},6330:t=>{t.exports=function(t){try{return String(t)}catch(t){return"Object"}}},9711:t=>{var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},3307:(t,r,e)=>{var n=e(133);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:(t,r,e)=>{var n=e(7854),o=e(2309),i=e(6656),a=e(9711),u=e(133),c=e(3307),s=o("wks"),l=n.Symbol,f=c?l:l&&l.withoutSetter||a;t.exports=function(t){return i(s,t)&&(u||"string"==typeof s[t])||(u&&i(l,t)?s[t]=l[t]:s[t]=f("Symbol."+t)),s[t]}},6992:(t,r,e)=>{"use strict";var n=e(5656),o=e(1223),i=e(7497),a=e(9909),u=e(654),c="Array Iterator",s=a.set,l=a.getterFor(c);t.exports=u(Array,"Array",(function(t,r){s(this,{type:c,target:n(t),index:0,kind:r})}),(function(){var t=l(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:n,done:!1}:"values"==e?{value:r[n],done:!1}:{value:[n,r[n]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},9600:(t,r,e)=>{"use strict";var n=e(2109),o=e(8361),i=e(5656),a=e(9341),u=[].join,c=o!=Object,s=a("join",",");n({target:"Array",proto:!0,forced:c||!s},{join:function(t){return u.call(i(this),void 0===t?",":t)}})},1249:(t,r,e)=>{"use strict";var n=e(2109),o=e(2092).map;n({target:"Array",proto:!0,forced:!e(1194)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},8559:(t,r,e)=>{var n=e(2109),o=e(408),i=e(6135);n({target:"Object",stat:!0},{fromEntries:function(t){var r={};return o(t,(function(t,e){i(r,t,e)}),{AS_ENTRIES:!0}),r}})},1539:(t,r,e)=>{var n=e(1694),o=e(1320),i=e(288);n||o(Object.prototype,"toString",i,{unsafe:!0})},4603:(t,r,e)=>{var n=e(9781),o=e(7854),i=e(4705),a=e(9587),u=e(8880),c=e(3070).f,s=e(8006).f,l=e(7850),f=e(1340),p=e(7066),v=e(2999),g=e(1320),d=e(7293),h=e(6656),x=e(9909).enforce,y=e(6340),b=e(5112),m=e(9441),O=e(7168),S=b("match"),w=o.RegExp,E=w.prototype,j=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,A=/a/g,R=/a/g,P=new w(A)!==A,T=v.UNSUPPORTED_Y,I=n&&(!P||T||m||O||d((function(){return R[S]=!1,w(A)!=A||w(R)==R||"/a/i"!=w(A,"i")})));if(i("RegExp",I)){for(var L=function(t,r){var e,n,o,i,c,s,v=this instanceof L,g=l(t),d=void 0===r,y=[],b=t;if(!v&&g&&d&&t.constructor===L)return t;if((g||t instanceof L)&&(t=t.source,d&&(r="flags"in b?b.flags:p.call(b))),t=void 0===t?"":f(t),r=void 0===r?"":f(r),b=t,m&&"dotAll"in A&&(n=!!r&&r.indexOf("s")>-1)&&(r=r.replace(/s/g,"")),e=r,T&&"sticky"in A&&(o=!!r&&r.indexOf("y")>-1)&&(r=r.replace(/y/g,"")),O&&(i=function(t){for(var r,e=t.length,n=0,o="",i=[],a={},u=!1,c=!1,s=0,l="";n<=e;n++){if("\\"===(r=t.charAt(n)))r+=t.charAt(++n);else if("]"===r)u=!1;else if(!u)switch(!0){case"["===r:u=!0;break;case"("===r:j.test(t.slice(n+1))&&(n+=2,c=!0),o+=r,s++;continue;case">"===r&&c:if(""===l||h(a,l))throw new SyntaxError("Invalid capture group name");a[l]=!0,i.push([l,s]),c=!1,l="";continue}c?l+=r:o+=r}return[o,i]}(t),t=i[0],y=i[1]),c=a(w(t,r),v?this:E,L),(n||o||y.length)&&(s=x(c),n&&(s.dotAll=!0,s.raw=L(function(t){for(var r,e=t.length,n=0,o="",i=!1;n<=e;n++)"\\"!==(r=t.charAt(n))?i||"."!==r?("["===r?i=!0:"]"===r&&(i=!1),o+=r):o+="[\\s\\S]":o+=r+t.charAt(++n);return o}(t),e)),o&&(s.sticky=!0),y.length&&(s.groups=y)),t!==b)try{u(c,"source",""===b?"(?:)":b)}catch(t){}return c},_=function(t){t in L||c(L,t,{configurable:!0,get:function(){return w[t]},set:function(r){w[t]=r}})},$=s(w),k=0;$.length>k;)_($[k++]);E.constructor=L,L.prototype=E,g(o,"RegExp",L)}y("RegExp")},4916:(t,r,e)=>{"use strict";var n=e(2109),o=e(2261);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},9714:(t,r,e)=>{"use strict";var n=e(6530).PROPER,o=e(1320),i=e(9670),a=e(1340),u=e(7293),c=e(7066),s="toString",l=RegExp.prototype,f=l.toString,p=u((function(){return"/a/b"!=f.call({source:"a",flags:"b"})})),v=n&&f.name!=s;(p||v)&&o(RegExp.prototype,s,(function(){var t=i(this),r=a(t.source),e=t.flags;return"/"+r+"/"+a(void 0===e&&t instanceof RegExp&&!("flags"in l)?c.call(t):e)}),{unsafe:!0})},5306:(t,r,e)=>{"use strict";var n=e(7007),o=e(7293),i=e(9670),a=e(614),u=e(9958),c=e(7466),s=e(1340),l=e(4488),f=e(1530),p=e(8173),v=e(647),g=e(7651),d=e(5112)("replace"),h=Math.max,x=Math.min,y="$0"==="a".replace(/./,"$0"),b=!!/./[d]&&""===/./[d]("a","$0");n("replace",(function(t,r,e){var n=b?"$":"$0";return[function(t,e){var n=l(this),o=null==t?void 0:p(t,d);return o?o.call(t,n,e):r.call(s(n),t,e)},function(t,o){var l=i(this),p=s(t);if("string"==typeof o&&-1===o.indexOf(n)&&-1===o.indexOf("$<")){var d=e(r,l,p,o);if(d.done)return d.value}var y=a(o);y||(o=s(o));var b=l.global;if(b){var m=l.unicode;l.lastIndex=0}for(var O=[];;){var S=g(l,p);if(null===S)break;if(O.push(S),!b)break;""===s(S[0])&&(l.lastIndex=f(p,c(l.lastIndex),m))}for(var w,E="",j=0,A=0;A<O.length;A++){S=O[A];for(var R=s(S[0]),P=h(x(u(S.index),p.length),0),T=[],I=1;I<S.length;I++)T.push(void 0===(w=S[I])?w:String(w));var L=S.groups;if(y){var _=[R].concat(T,P,p);void 0!==L&&_.push(L);var $=s(o.apply(void 0,_))}else $=v(R,p,P,T,L,o);P>=j&&(E+=p.slice(j,P)+$,j=P+R.length)}return E+p.slice(j)}]}),!!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!y||b)},3123:(t,r,e)=>{"use strict";var n=e(7007),o=e(7850),i=e(9670),a=e(4488),u=e(6707),c=e(1530),s=e(7466),l=e(1340),f=e(8173),p=e(7651),v=e(2261),g=e(2999),d=e(7293),h=g.UNSUPPORTED_Y,x=[].push,y=Math.min,b=4294967295,m=!d((function(){var t=/(?:)/,r=t.exec;t.exec=function(){return r.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]}));n("split",(function(t,r,e){var n;return n="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,e){var n=l(a(this)),i=void 0===e?b:e>>>0;if(0===i)return[];if(void 0===t)return[n];if(!o(t))return r.call(n,t,i);for(var u,c,s,f=[],p=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),g=0,d=new RegExp(t.source,p+"g");(u=v.call(d,n))&&!((c=d.lastIndex)>g&&(f.push(n.slice(g,u.index)),u.length>1&&u.index<n.length&&x.apply(f,u.slice(1)),s=u[0].length,g=c,f.length>=i));)d.lastIndex===u.index&&d.lastIndex++;return g===n.length?!s&&d.test("")||f.push(""):f.push(n.slice(g)),f.length>i?f.slice(0,i):f}:"0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:r.call(this,t,e)}:r,[function(r,e){var o=a(this),i=null==r?void 0:f(r,t);return i?i.call(r,o,e):n.call(l(o),r,e)},function(t,o){var a=i(this),f=l(t),v=e(n,a,f,o,n!==r);if(v.done)return v.value;var g=u(a,RegExp),d=a.unicode,x=(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(h?"g":"y"),m=new g(h?"^(?:"+a.source+")":a,x),O=void 0===o?b:o>>>0;if(0===O)return[];if(0===f.length)return null===p(m,f)?[f]:[];for(var S=0,w=0,E=[];w<f.length;){m.lastIndex=h?0:w;var j,A=p(m,h?f.slice(w):f);if(null===A||(j=y(s(m.lastIndex+(h?w:0)),f.length))===S)w=c(f,w,d);else{if(E.push(f.slice(S,w)),E.length===O)return E;for(var R=1;R<=A.length-1;R++)if(E.push(A[R]),E.length===O)return E;w=S=j}}return E.push(f.slice(S)),E}]}),!m,h)},3948:(t,r,e)=>{var n=e(7854),o=e(8324),i=e(8509),a=e(6992),u=e(8880),c=e(5112),s=c("iterator"),l=c("toStringTag"),f=a.values,p=function(t,r){if(t){if(t[s]!==f)try{u(t,s,f)}catch(r){t[s]=f}if(t[l]||u(t,l,r),o[r])for(var e in a)if(t[e]!==a[e])try{u(t,e,a[e])}catch(r){t[e]=a[e]}}};for(var v in o)p(n[v]&&n[v].prototype,v);p(i,"DOMTokenList")}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n](i,i.exports,e),i.exports}e.n=t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r);var n={};return(()=>{"use strict";e.d(n,{default:()=>i});e(6992),e(8559),e(1539),e(3948),e(4916),e(5306),e(3123),e(4603),e(9714),e(1249),e(9600);var t=Object.fromEntries||function(t){for(var r,e,n,o=(Array.isArray(t)?(r=t,e=-1,{next:function(){var t=r.length<=++e;return{done:t,value:t?void 0:r[e]}}}):"entries"in t?t.entries():t),i={};(n=o.next())&&!n.done;){var a=n.value;Object.defineProperty(i,a[0],{configurable:!0,enumerable:!0,writable:!0,value:a[1]})}return i};var r={string:"String",char:"String",int:"Number",integer:"Number",double:"Number",long:"Number",boolean:"Boolean",object:"Object",map:"Object",array:"Array",list:"Array",float:"Number"},o='([\\w="",\\- \\u4e00-\\u9fa5]+)';const i=function(e,n){var i,a,u=(window.clipboardData||e.clipboardData).getData("Text").replace(/\r\n/g,"\n").replace(/\r/g,"\n").replace(/[\n\r]+$/,""),c=u.indexOf("@RequestParam")>-1,s=u.indexOf("@ApiModelProperty")>-1||u.indexOf("private ")>-1,l=-1===u.indexOf("\t")||c,f=u.split("\n"),p=[],v=n.type,g=void 0===v?c?1:s?2:-1:v;return i=1===g?new RegExp("@RequestParam\\("+o+"\\)"+"[\\n\\r\\t ;]*(@ApiParam\\("+o+"\\))?"+"[\\n\\r\\t ;]*([\\w]+) ([\\w]+)","g"):2===g?new RegExp("(@ApiModelProperty\\("+o+"\\))?"+"[\\n\\r\\t ;]*(private|public)? ?([\\w]+) ([\\w]+)","g"):new RegExp(".+"),f=f.map((function(t,r){var e=t?t.split("\t"):[];return 0===r?a=+e.length:(0===a||r!==f.length-1&&a!==e.length)&&(l=!0),e=e.map((function(t){return t.replace(/\s+/g," ")}))})),l&&(f=f.map((function(t){return t.join("")})).join("")),1===g&&c?(f.replace(i,(function(e,n,o,i,a,u){var c={},s={};if(-1===n.indexOf("=")&&-1===n.indexOf(","))c={value:n.replace(/^"([\s\S]*)"$/,"$1")};else{var l=n.replace(/\s+/g,"").split(",");l=l.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),c=t(l)}if(void 0===i)console.info("没有ApiParam定义");else if(-1===i.indexOf("=")&&-1===i.indexOf(","))s={value:i.replace(/^"([\s\S]*)"$/,"$1")};else{var f=i.replace(/\s+/g,"").split(",");f=f.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),s=t(f)}p.push({type:r[a.toLowerCase()]||"String",required:void 0===c.required||c.required,name:c.value||u,defaultValue:s.defaultValue||"",description:s.value||""})})),p):2===g&&s?(f.replace(i,(function(e,n,o,i,a,u){var c={};if(void 0===o)console.info("没有ApiParam定义");else if(-1===o.indexOf("=")&&-1===o.indexOf(","))c={value:o.replace(/^"([\s\S]*)"$/,"$1")};else{var s=o.replace(/\s+/g,"").split(",");s=s.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),c=t(s)}p.push({required:!0,type:a?r[a.toLowerCase()]:"String",description:c.value||"",defaultValue:"",name:u})})),p):f}})(),n=n.default})()})); | ||
!function(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define("clipboardParser",[],r):"object"==typeof exports?exports.clipboardParser=r():t.clipboardParser=r()}("undefined"!=typeof self?self:this,(function(){return(()=>{var t={398:(t,r,e)=>{var n=e(7844),o=e(8129),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a function")}},7882:(t,r,e)=>{var n=e(8373),o=e(8129),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a constructor")}},3020:(t,r,e)=>{var n=e(7844),o=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw i("Can't set "+o(t)+" as a prototype")}},166:(t,r,e)=>{var n=e(1504),o=e(8798),i=e(508).f,a=n("unscopables"),u=Array.prototype;null==u[a]&&i(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},8257:(t,r,e)=>{"use strict";var n=e(6239).charAt;t.exports=function(t,r,e){return r+(e?n(t,r).length:1)}},3667:(t,r,e)=>{var n=e(7362),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not an object")}},8277:(t,r,e)=>{var n=e(41),o=e(3465),i=e(2910),a=function(t){return function(r,e,a){var u,c=n(r),s=i(c),l=o(a,s);if(t&&e!=e){for(;s>l;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((t||l in c)&&c[l]===e)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},3483:(t,r,e)=>{var n=e(5376),o=e(6834),i=e(9636),a=e(1133),u=e(2910),c=e(9569),s=o([].push),l=function(t){var r=1==t,e=2==t,o=3==t,l=4==t,f=6==t,p=7==t,v=5==t||f;return function(g,d,y,h){for(var x,b,m=a(g),S=i(m),w=n(d,y),O=u(S),E=0,j=h||c,R=r?j(g,O):e||p?j(g,0):void 0;O>E;E++)if((v||E in S)&&(b=w(x=S[E],E,m),t))if(r)R[E]=b;else if(b)switch(t){case 3:return!0;case 5:return x;case 6:return E;case 2:s(R,x)}else switch(t){case 4:return!1;case 7:s(R,x)}return f?-1:o||l?l:R}};t.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterReject:l(7)}},5594:(t,r,e)=>{var n=e(3589),o=e(1504),i=e(9275),a=o("species");t.exports=function(t){return i>=51||!n((function(){var r=[];return(r.constructor={})[a]=function(){return{foo:1}},1!==r[t](Boolean).foo}))}},9121:(t,r,e)=>{"use strict";var n=e(3589);t.exports=function(t,r){var e=[][t];return!!e&&n((function(){e.call(null,r||function(){return 1},1)}))}},6932:(t,r,e)=>{var n=e(3465),o=e(2910),i=e(5518),a=Array,u=Math.max;t.exports=function(t,r,e){for(var c=o(t),s=n(r,c),l=n(void 0===e?c:e,c),f=a(u(l-s,0)),p=0;s<l;s++,p++)i(f,p,t[s]);return f.length=p,f}},8144:(t,r,e)=>{var n=e(7258),o=e(8373),i=e(7362),a=e(1504)("species"),u=Array;t.exports=function(t){var r;return n(t)&&(r=t.constructor,(o(r)&&(r===u||n(r.prototype))||i(r)&&null===(r=r[a]))&&(r=void 0)),void 0===r?u:r}},9569:(t,r,e)=>{var n=e(8144);t.exports=function(t,r){return new(n(t))(0===r?0:r)}},2387:(t,r,e)=>{var n=e(6834),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},8980:(t,r,e)=>{var n=e(2472),o=e(7844),i=e(2387),a=e(1504)("toStringTag"),u=Object,c="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=u(t),a))?e:c?i(r):"Object"==(n=i(r))&&o(r.callee)?"Arguments":n}},4813:(t,r,e)=>{var n=e(7061),o=e(4245),i=e(8728),a=e(508);t.exports=function(t,r,e){for(var u=o(r),c=a.f,s=i.f,l=0;l<u.length;l++){var f=u[l];n(t,f)||e&&n(e,f)||c(t,f,s(r,f))}}},6544:(t,r,e)=>{var n=e(1504)("match");t.exports=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[n]=!1,"/./"[t](r)}catch(t){}}return!1}},285:(t,r,e)=>{var n=e(3589);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},6455:(t,r,e)=>{"use strict";var n=e(5522).IteratorPrototype,o=e(8798),i=e(6338),a=e(3625),u=e(1543),c=function(){return this};t.exports=function(t,r,e,s){var l=r+" Iterator";return t.prototype=o(n,{next:i(+!s,e)}),a(t,l,!1,!0),u[l]=c,t}},5732:(t,r,e)=>{var n=e(4921),o=e(508),i=e(6338);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},6338:t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},5518:(t,r,e)=>{"use strict";var n=e(3336),o=e(508),i=e(6338);t.exports=function(t,r,e){var a=n(r);a in t?o.f(t,a,i(0,e)):t[a]=e}},8286:(t,r,e)=>{var n=e(7844),o=e(508),i=e(7263),a=e(5382);t.exports=function(t,r,e,u){u||(u={});var c=u.enumerable,s=void 0!==u.name?u.name:r;if(n(e)&&i(e,s,u),u.global)c?t[r]=e:a(r,e);else{try{u.unsafe?t[r]&&(c=!0):delete t[r]}catch(t){}c?t[r]=e:o.f(t,r,{value:e,enumerable:!1,configurable:!u.nonConfigurable,writable:!u.nonWritable})}return t}},5382:(t,r,e)=>{var n=e(7643),o=Object.defineProperty;t.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},1396:(t,r,e)=>{"use strict";var n=e(5266),o=e(8937),i=e(8199),a=e(852),u=e(7844),c=e(6455),s=e(3697),l=e(2383),f=e(3625),p=e(5732),v=e(8286),g=e(1504),d=e(1543),y=e(5522),h=a.PROPER,x=a.CONFIGURABLE,b=y.IteratorPrototype,m=y.BUGGY_SAFARI_ITERATORS,S=g("iterator"),w="keys",O="values",E="entries",j=function(){return this};t.exports=function(t,r,e,a,g,y,R){c(e,r,a);var A,P,I,T=function(t){if(t===g&&$)return $;if(!m&&t in C)return C[t];switch(t){case w:case O:case E:return function(){return new e(this,t)}}return function(){return new e(this)}},L=r+" Iterator",_=!1,C=t.prototype,M=C[S]||C["@@iterator"]||g&&C[g],$=!m&&M||T(g),k="Array"==r&&C.entries||M;if(k&&(A=s(k.call(new t)))!==Object.prototype&&A.next&&(i||s(A)===b||(l?l(A,b):u(A[S])||v(A,S,j)),f(A,L,!0,!0),i&&(d[L]=j)),h&&g==O&&M&&M.name!==O&&(!i&&x?p(C,"name",O):(_=!0,$=function(){return o(M,this)})),g)if(P={values:T(O),keys:y?$:T(w),entries:T(E)},R)for(I in P)(m||_||!(I in C))&&v(C,I,P[I]);else n({target:r,proto:!0,forced:m||_},P);return i&&!R||C[S]===$||v(C,S,$,{name:g}),d[r]=$,P}},4921:(t,r,e)=>{var n=e(3589);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},757:(t,r,e)=>{var n=e(7643),o=e(7362),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},4623: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}},9729:(t,r,e)=>{var n=e(757)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},5514:(t,r,e)=>{var n=e(5080);t.exports=n("navigator","userAgent")||""},9275:(t,r,e)=>{var n,o,i=e(7643),a=e(5514),u=i.process,c=i.Deno,s=u&&u.versions||c&&c.version,l=s&&s.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},1206:t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},5266:(t,r,e)=>{var n=e(7643),o=e(8728).f,i=e(5732),a=e(8286),u=e(5382),c=e(4813),s=e(4414);t.exports=function(t,r){var e,l,f,p,v,g=t.target,d=t.global,y=t.stat;if(e=d?n:y?n[g]||u(g,{}):(n[g]||{}).prototype)for(l in r){if(p=r[l],f=t.dontCallGetSet?(v=o(e,l))&&v.value:e[l],!s(d?l:g+(y?".":"#")+l,t.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(t.sham||f&&f.sham)&&i(p,"sham",!0),a(e,l,p,t)}}},3589:t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},1402:(t,r,e)=>{"use strict";e(7987);var n=e(6834),o=e(8286),i=e(5262),a=e(3589),u=e(1504),c=e(5732),s=u("species"),l=RegExp.prototype;t.exports=function(t,r,e,f){var p=u(t),v=!a((function(){var r={};return r[p]=function(){return 7},7!=""[t](r)})),g=v&&!a((function(){var r=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[s]=function(){return e},e.flags="",e[p]=/./[p]),e.exec=function(){return r=!0,null},e[p](""),!r}));if(!v||!g||e){var d=n(/./[p]),y=r(p,""[t],(function(t,r,e,o,a){var u=n(t),c=r.exec;return c===i||c===l.exec?v&&!a?{done:!0,value:d(r,e,o)}:{done:!0,value:u(e,r,o)}:{done:!1}}));o(String.prototype,t,y[0]),o(l,p,y[1])}f&&c(l[p],"sham",!0)}},3233:(t,r,e)=>{var n=e(6054),o=Function.prototype,i=o.apply,a=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(i):function(){return a.apply(i,arguments)})},5376:(t,r,e)=>{var n=e(6834),o=e(398),i=e(6054),a=n(n.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?a(t,r):function(){return t.apply(r,arguments)}}},6054:(t,r,e)=>{var n=e(3589);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8937:(t,r,e)=>{var n=e(6054),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},852:(t,r,e)=>{var n=e(4921),o=e(7061),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,u=o(i,"name"),c=u&&"something"===function(){}.name,s=u&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:c,CONFIGURABLE:s}},6834:(t,r,e)=>{var n=e(6054),o=Function.prototype,i=o.bind,a=o.call,u=n&&i.bind(a,a);t.exports=n?function(t){return t&&u(t)}:function(t){return t&&function(){return a.apply(t,arguments)}}},5080:(t,r,e)=>{var n=e(7643),o=e(7844),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(n[t]):n[t]&&n[t][r]}},9761:(t,r,e)=>{var n=e(8980),o=e(8986),i=e(1543),a=e(1504)("iterator");t.exports=function(t){if(null!=t)return o(t,a)||o(t,"@@iterator")||i[n(t)]}},487:(t,r,e)=>{var n=e(8937),o=e(398),i=e(3667),a=e(8129),u=e(9761),c=TypeError;t.exports=function(t,r){var e=arguments.length<2?u(t):r;if(o(e))return i(n(e,t));throw c(a(t)+" is not iterable")}},8986:(t,r,e)=>{var n=e(398);t.exports=function(t,r){var e=t[r];return null==e?void 0:n(e)}},6018:(t,r,e)=>{var n=e(6834),o=e(1133),i=Math.floor,a=n("".charAt),u=n("".replace),c=n("".slice),s=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,r,e,n,f,p){var v=e+t.length,g=n.length,d=l;return void 0!==f&&(f=o(f),d=s),u(p,d,(function(o,u){var s;switch(a(u,0)){case"$":return"$";case"&":return t;case"`":return c(r,0,e);case"'":return c(r,v);case"<":s=f[c(u,1,-1)];break;default:var l=+u;if(0===l)return o;if(l>g){var p=i(l/10);return 0===p?o:p<=g?void 0===n[p-1]?a(u,1):n[p-1]+a(u,1):o}s=n[l-1]}return void 0===s?"":s}))}},7643:(t,r,e)=>{var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},7061:(t,r,e)=>{var n=e(6834),o=e(1133),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},2142:t=>{t.exports={}},845:(t,r,e)=>{var n=e(5080);t.exports=n("document","documentElement")},1656:(t,r,e)=>{var n=e(4921),o=e(3589),i=e(757);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},9636:(t,r,e)=>{var n=e(6834),o=e(3589),i=e(2387),a=Object,u=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?u(t,""):a(t)}:a},9042:(t,r,e)=>{var n=e(7844),o=e(7362),i=e(2383);t.exports=function(t,r,e){var a,u;return i&&n(a=r.constructor)&&a!==e&&o(u=a.prototype)&&u!==e.prototype&&i(t,u),t}},8190:(t,r,e)=>{var n=e(6834),o=e(7844),i=e(4974),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},9067:(t,r,e)=>{var n,o,i,a=e(2919),u=e(7643),c=e(6834),s=e(7362),l=e(5732),f=e(7061),p=e(4974),v=e(4446),g=e(2142),d="Object already initialized",y=u.TypeError,h=u.WeakMap;if(a||p.state){var x=p.state||(p.state=new h),b=c(x.get),m=c(x.has),S=c(x.set);n=function(t,r){if(m(x,t))throw new y(d);return r.facade=t,S(x,t,r),r},o=function(t){return b(x,t)||{}},i=function(t){return m(x,t)}}else{var w=v("state");g[w]=!0,n=function(t,r){if(f(t,w))throw new y(d);return r.facade=t,l(t,w,r),r},o=function(t){return f(t,w)?t[w]:{}},i=function(t){return f(t,w)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(r){var e;if(!s(r)||(e=o(r)).type!==t)throw y("Incompatible receiver, "+t+" required");return e}}}},3734:(t,r,e)=>{var n=e(1504),o=e(1543),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},7258:(t,r,e)=>{var n=e(2387);t.exports=Array.isArray||function(t){return"Array"==n(t)}},7844:t=>{t.exports=function(t){return"function"==typeof t}},8373:(t,r,e)=>{var n=e(6834),o=e(3589),i=e(7844),a=e(8980),u=e(5080),c=e(8190),s=function(){},l=[],f=u("Reflect","construct"),p=/^\s*(?:class|function)\b/,v=n(p.exec),g=!p.exec(s),d=function(t){if(!i(t))return!1;try{return f(s,l,t),!0}catch(t){return!1}},y=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return g||!!v(p,c(t))}catch(t){return!0}};y.sham=!0,t.exports=!f||o((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?y:d},4414:(t,r,e)=>{var n=e(3589),o=e(7844),i=/#|\.prototype\./,a=function(t,r){var e=c[u(t)];return e==l||e!=s&&(o(r)?n(r):!!r)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=a.data={},s=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},7362:(t,r,e)=>{var n=e(7844);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},8199:t=>{t.exports=!1},7754:(t,r,e)=>{var n=e(7362),o=e(2387),i=e(1504)("match");t.exports=function(t){var r;return n(t)&&(void 0!==(r=t[i])?!!r:"RegExp"==o(t))}},6709:(t,r,e)=>{var n=e(5080),o=e(7844),i=e(5152),a=e(6257),u=Object;t.exports=a?function(t){return"symbol"==typeof t}:function(t){var r=n("Symbol");return o(r)&&i(r.prototype,u(t))}},9128:(t,r,e)=>{var n=e(5376),o=e(8937),i=e(3667),a=e(8129),u=e(3734),c=e(2910),s=e(5152),l=e(487),f=e(9761),p=e(9340),v=TypeError,g=function(t,r){this.stopped=t,this.result=r},d=g.prototype;t.exports=function(t,r,e){var y,h,x,b,m,S,w,O=e&&e.that,E=!(!e||!e.AS_ENTRIES),j=!(!e||!e.IS_RECORD),R=!(!e||!e.IS_ITERATOR),A=!(!e||!e.INTERRUPTED),P=n(r,O),I=function(t){return y&&p(y,"normal",t),new g(!0,t)},T=function(t){return E?(i(t),A?P(t[0],t[1],I):P(t[0],t[1])):A?P(t,I):P(t)};if(j)y=t.iterator;else if(R)y=t;else{if(!(h=f(t)))throw v(a(t)+" is not iterable");if(u(h)){for(x=0,b=c(t);b>x;x++)if((m=T(t[x]))&&s(d,m))return m;return new g(!1)}y=l(t,h)}for(S=j?t.next:y.next;!(w=o(S,y)).done;){try{m=T(w.value)}catch(t){p(y,"throw",t)}if("object"==typeof m&&m&&s(d,m))return m}return new g(!1)}},9340:(t,r,e)=>{var n=e(8937),o=e(3667),i=e(8986);t.exports=function(t,r,e){var a,u;o(t);try{if(!(a=i(t,"return"))){if("throw"===r)throw e;return e}a=n(a,t)}catch(t){u=!0,a=t}if("throw"===r)throw e;if(u)throw a;return o(a),e}},5522:(t,r,e)=>{"use strict";var n,o,i,a=e(3589),u=e(7844),c=e(8798),s=e(3697),l=e(8286),f=e(1504),p=e(8199),v=f("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(n=o):g=!0),null==n||a((function(){var t={};return n[v].call(t)!==t}))?n={}:p&&(n=c(n)),u(n[v])||l(n,v,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},1543:t=>{t.exports={}},2910:(t,r,e)=>{var n=e(163);t.exports=function(t){return n(t.length)}},7263:(t,r,e)=>{var n=e(3589),o=e(7844),i=e(7061),a=e(4921),u=e(852).CONFIGURABLE,c=e(8190),s=e(9067),l=s.enforce,f=s.get,p=Object.defineProperty,v=a&&!n((function(){return 8!==p((function(){}),"length",{value:8}).length})),g=String(String).split("String"),d=t.exports=function(t,r,e){"Symbol("===String(r).slice(0,7)&&(r="["+String(r).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),e&&e.getter&&(r="get "+r),e&&e.setter&&(r="set "+r),(!i(t,"name")||u&&t.name!==r)&&(a?p(t,"name",{value:r,configurable:!0}):t.name=r),v&&e&&i(e,"arity")&&t.length!==e.arity&&p(t,"length",{value:e.arity});try{e&&i(e,"constructor")&&e.constructor?a&&p(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=l(t);return i(n,"source")||(n.source=g.join("string"==typeof r?r:"")),t};Function.prototype.toString=d((function(){return o(this)&&f(this).source||c(this)}),"toString")},8900:t=>{var r=Math.ceil,e=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?e:r)(n)}},5242:(t,r,e)=>{var n=e(9275),o=e(3589);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},2919:(t,r,e)=>{var n=e(7643),o=e(7844),i=e(8190),a=n.WeakMap;t.exports=o(a)&&/native code/.test(i(a))},6418:(t,r,e)=>{var n=e(7754),o=TypeError;t.exports=function(t){if(n(t))throw o("The method doesn't accept regular expressions");return t}},8798:(t,r,e)=>{var n,o=e(3667),i=e(3889),a=e(1206),u=e(2142),c=e(845),s=e(757),l=e(4446),f=l("IE_PROTO"),p=function(){},v=function(t){return"<script>"+t+"</"+"script>"},g=function(t){t.write(v("")),t.close();var r=t.parentWindow.Object;return t=null,r},d=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r;d="undefined"!=typeof document?document.domain&&n?g(n):((r=s("iframe")).style.display="none",c.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(v("document.F=Object")),t.close(),t.F):g(n);for(var e=a.length;e--;)delete d.prototype[a[e]];return d()};u[f]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(p.prototype=o(t),e=new p,p.prototype=null,e[f]=t):e=d(),void 0===r?e:i.f(e,r)}},3889:(t,r,e)=>{var n=e(4921),o=e(7197),i=e(508),a=e(3667),u=e(41),c=e(8901);r.f=n&&!o?Object.defineProperties:function(t,r){a(t);for(var e,n=u(r),o=c(r),s=o.length,l=0;s>l;)i.f(t,e=o[l++],n[e]);return t}},508:(t,r,e)=>{var n=e(4921),o=e(1656),i=e(7197),a=e(3667),u=e(3336),c=TypeError,s=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",v="writable";r.f=n?i?function(t,r,e){if(a(t),r=u(r),a(e),"function"==typeof t&&"prototype"===r&&"value"in e&&v in e&&!e.writable){var n=l(t,r);n&&n.writable&&(t[r]=e.value,e={configurable:p in e?e.configurable:n.configurable,enumerable:f in e?e.enumerable:n.enumerable,writable:!1})}return s(t,r,e)}:s:function(t,r,e){if(a(t),r=u(r),a(e),o)try{return s(t,r,e)}catch(t){}if("get"in e||"set"in e)throw c("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},8728:(t,r,e)=>{var n=e(4921),o=e(8937),i=e(8490),a=e(6338),u=e(41),c=e(3336),s=e(7061),l=e(1656),f=Object.getOwnPropertyDescriptor;r.f=n?f:function(t,r){if(t=u(t),r=c(r),l)try{return f(t,r)}catch(t){}if(s(t,r))return a(!o(i.f,t,r),t[r])}},1362:(t,r,e)=>{var n=e(6436),o=e(1206).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},2247:(t,r)=>{r.f=Object.getOwnPropertySymbols},3697:(t,r,e)=>{var n=e(7061),o=e(7844),i=e(1133),a=e(4446),u=e(285),c=a("IE_PROTO"),s=Object,l=s.prototype;t.exports=u?s.getPrototypeOf:function(t){var r=i(t);if(n(r,c))return r[c];var e=r.constructor;return o(e)&&r instanceof e?e.prototype:r instanceof s?l:null}},5152:(t,r,e)=>{var n=e(6834);t.exports=n({}.isPrototypeOf)},6436:(t,r,e)=>{var n=e(6834),o=e(7061),i=e(41),a=e(8277).indexOf,u=e(2142),c=n([].push);t.exports=function(t,r){var e,n=i(t),s=0,l=[];for(e in n)!o(u,e)&&o(n,e)&&c(l,e);for(;r.length>s;)o(n,e=r[s++])&&(~a(l,e)||c(l,e));return l}},8901:(t,r,e)=>{var n=e(6436),o=e(1206);t.exports=Object.keys||function(t){return n(t,o)}},8490:(t,r)=>{"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},2383:(t,r,e)=>{var n=e(6834),o=e(3667),i=e(3020);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=n(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(e,[]),r=e instanceof Array}catch(t){}return function(e,n){return o(e),i(n),r?t(e,n):e.__proto__=n,e}}():void 0)},9420:(t,r,e)=>{"use strict";var n=e(2472),o=e(8980);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},7005:(t,r,e)=>{var n=e(8937),o=e(7844),i=e(7362),a=TypeError;t.exports=function(t,r){var e,u;if("string"===r&&o(e=t.toString)&&!i(u=n(e,t)))return u;if(o(e=t.valueOf)&&!i(u=n(e,t)))return u;if("string"!==r&&o(e=t.toString)&&!i(u=n(e,t)))return u;throw a("Can't convert object to primitive value")}},4245:(t,r,e)=>{var n=e(5080),o=e(6834),i=e(1362),a=e(2247),u=e(3667),c=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var r=i.f(u(t)),e=a.f;return e?c(r,e(t)):r}},5243:(t,r,e)=>{var n=e(508).f;t.exports=function(t,r,e){e in t||n(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})}},6718:(t,r,e)=>{var n=e(8937),o=e(3667),i=e(7844),a=e(2387),u=e(5262),c=TypeError;t.exports=function(t,r){var e=t.exec;if(i(e)){var s=n(e,t,r);return null!==s&&o(s),s}if("RegExp"===a(t))return n(u,t,r);throw c("RegExp#exec called on incompatible receiver")}},5262:(t,r,e)=>{"use strict";var n,o,i=e(8937),a=e(6834),u=e(5409),c=e(1539),s=e(8491),l=e(7397),f=e(8798),p=e(9067).get,v=e(9028),g=e(955),d=l("native-string-replace",String.prototype.replace),y=RegExp.prototype.exec,h=y,x=a("".charAt),b=a("".indexOf),m=a("".replace),S=a("".slice),w=(o=/b*/g,i(y,n=/a/,"a"),i(y,o,"a"),0!==n.lastIndex||0!==o.lastIndex),O=s.BROKEN_CARET,E=void 0!==/()??/.exec("")[1];(w||E||O||v||g)&&(h=function(t){var r,e,n,o,a,s,l,v=this,g=p(v),j=u(t),R=g.raw;if(R)return R.lastIndex=v.lastIndex,r=i(h,R,j),v.lastIndex=R.lastIndex,r;var A=g.groups,P=O&&v.sticky,I=i(c,v),T=v.source,L=0,_=j;if(P&&(I=m(I,"y",""),-1===b(I,"g")&&(I+="g"),_=S(j,v.lastIndex),v.lastIndex>0&&(!v.multiline||v.multiline&&"\n"!==x(j,v.lastIndex-1))&&(T="(?: "+T+")",_=" "+_,L++),e=new RegExp("^(?:"+T+")",I)),E&&(e=new RegExp("^"+T+"$(?!\\s)",I)),w&&(n=v.lastIndex),o=i(y,P?e:v,_),P?o?(o.input=S(o.input,L),o[0]=S(o[0],L),o.index=v.lastIndex,v.lastIndex+=o[0].length):v.lastIndex=0:w&&o&&(v.lastIndex=v.global?o.index+o[0].length:n),E&&o&&o.length>1&&i(d,o[0],e,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=s=f(null),a=0;a<A.length;a++)s[(l=A[a])[0]]=o[l[1]];return o}),t.exports=h},1539:(t,r,e)=>{"use strict";var n=e(3667);t.exports=function(){var t=n(this),r="";return t.hasIndices&&(r+="d"),t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.unicodeSets&&(r+="v"),t.sticky&&(r+="y"),r}},8603:(t,r,e)=>{var n=e(8937),o=e(7061),i=e(5152),a=e(1539),u=RegExp.prototype;t.exports=function(t){var r=t.flags;return void 0!==r||"flags"in u||o(t,"flags")||!i(u,t)?r:n(a,t)}},8491:(t,r,e)=>{var n=e(3589),o=e(7643).RegExp,i=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),u=i||n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));t.exports={BROKEN_CARET:u,MISSED_STICKY:a,UNSUPPORTED_Y:i}},9028:(t,r,e)=>{var n=e(3589),o=e(7643).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},955:(t,r,e)=>{var n=e(3589),o=e(7643).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},1670:t=>{var r=TypeError;t.exports=function(t){if(null==t)throw r("Can't call method on "+t);return t}},1230:(t,r,e)=>{"use strict";var n=e(5080),o=e(508),i=e(1504),a=e(4921),u=i("species");t.exports=function(t){var r=n(t),e=o.f;a&&r&&!r[u]&&e(r,u,{configurable:!0,get:function(){return this}})}},3625:(t,r,e)=>{var n=e(508).f,o=e(7061),i=e(1504)("toStringTag");t.exports=function(t,r,e){t&&!e&&(t=t.prototype),t&&!o(t,i)&&n(t,i,{configurable:!0,value:r})}},4446:(t,r,e)=>{var n=e(7397),o=e(8368),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},4974:(t,r,e)=>{var n=e(7643),o=e(5382),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},7397:(t,r,e)=>{var n=e(8199),o=e(4974);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.24.1",mode:n?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE",source:"https://github.com/zloirock/core-js"})},9002:(t,r,e)=>{var n=e(3667),o=e(7882),i=e(1504)("species");t.exports=function(t,r){var e,a=n(t).constructor;return void 0===a||null==(e=n(a)[i])?r:o(e)}},6239:(t,r,e)=>{var n=e(6834),o=e(1587),i=e(5409),a=e(1670),u=n("".charAt),c=n("".charCodeAt),s=n("".slice),l=function(t){return function(r,e){var n,l,f=i(a(r)),p=o(e),v=f.length;return p<0||p>=v?t?"":void 0:(n=c(f,p))<55296||n>56319||p+1===v||(l=c(f,p+1))<56320||l>57343?t?u(f,p):n:t?s(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},3465:(t,r,e)=>{var n=e(1587),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},41:(t,r,e)=>{var n=e(9636),o=e(1670);t.exports=function(t){return n(o(t))}},1587:(t,r,e)=>{var n=e(8900);t.exports=function(t){var r=+t;return r!=r||0===r?0:n(r)}},163:(t,r,e)=>{var n=e(1587),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},1133:(t,r,e)=>{var n=e(1670),o=Object;t.exports=function(t){return o(n(t))}},2299:(t,r,e)=>{var n=e(8937),o=e(7362),i=e(6709),a=e(8986),u=e(7005),c=e(1504),s=TypeError,l=c("toPrimitive");t.exports=function(t,r){if(!o(t)||i(t))return t;var e,c=a(t,l);if(c){if(void 0===r&&(r="default"),e=n(c,t,r),!o(e)||i(e))return e;throw s("Can't convert object to primitive value")}return void 0===r&&(r="number"),u(t,r)}},3336:(t,r,e)=>{var n=e(2299),o=e(6709);t.exports=function(t){var r=n(t,"string");return o(r)?r:r+""}},2472:(t,r,e)=>{var n={};n[e(1504)("toStringTag")]="z",t.exports="[object z]"===String(n)},5409:(t,r,e)=>{var n=e(8980),o=String;t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},8129:t=>{var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},8368:(t,r,e)=>{var n=e(6834),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},6257:(t,r,e)=>{var n=e(5242);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},7197:(t,r,e)=>{var n=e(4921),o=e(3589);t.exports=n&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},1504:(t,r,e)=>{var n=e(7643),o=e(7397),i=e(7061),a=e(8368),u=e(5242),c=e(6257),s=o("wks"),l=n.Symbol,f=l&&l.for,p=c?l:l&&l.withoutSetter||a;t.exports=function(t){if(!i(s,t)||!u&&"string"!=typeof s[t]){var r="Symbol."+t;u&&i(l,t)?s[t]=l[t]:s[t]=c&&f?f(r):p(r)}return s[t]}},2266:(t,r,e)=>{"use strict";var n=e(5266),o=e(8277).includes,i=e(3589),a=e(166);n({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a("includes")},1682:(t,r,e)=>{"use strict";var n=e(41),o=e(166),i=e(1543),a=e(9067),u=e(508).f,c=e(1396),s=e(8199),l=e(4921),f="Array Iterator",p=a.set,v=a.getterFor(f);t.exports=c(Array,"Array",(function(t,r){p(this,{type:f,target:n(t),index:0,kind:r})}),(function(){var t=v(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:n,done:!1}:"values"==e?{value:r[n],done:!1}:{value:[n,r[n]],done:!1}}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!s&&l&&"values"!==g.name)try{u(g,"name",{value:"values"})}catch(t){}},3590:(t,r,e)=>{"use strict";var n=e(5266),o=e(6834),i=e(9636),a=e(41),u=e(9121),c=o([].join),s=i!=Object,l=u("join",",");n({target:"Array",proto:!0,forced:s||!l},{join:function(t){return c(a(this),void 0===t?",":t)}})},4286:(t,r,e)=>{"use strict";var n=e(5266),o=e(3483).map;n({target:"Array",proto:!0,forced:!e(5594)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},84:(t,r,e)=>{var n=e(5266),o=e(9128),i=e(5518);n({target:"Object",stat:!0},{fromEntries:function(t){var r={};return o(t,(function(t,e){i(r,t,e)}),{AS_ENTRIES:!0}),r}})},9241:(t,r,e)=>{var n=e(2472),o=e(8286),i=e(9420);n||o(Object.prototype,"toString",i,{unsafe:!0})},5807:(t,r,e)=>{var n=e(4921),o=e(7643),i=e(6834),a=e(4414),u=e(9042),c=e(5732),s=e(1362).f,l=e(5152),f=e(7754),p=e(5409),v=e(8603),g=e(8491),d=e(5243),y=e(8286),h=e(3589),x=e(7061),b=e(9067).enforce,m=e(1230),S=e(1504),w=e(9028),O=e(955),E=S("match"),j=o.RegExp,R=j.prototype,A=o.SyntaxError,P=i(R.exec),I=i("".charAt),T=i("".replace),L=i("".indexOf),_=i("".slice),C=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,M=/a/g,$=/a/g,k=new j(M)!==M,N=g.MISSED_STICKY,D=g.UNSUPPORTED_Y,F=n&&(!k||N||w||O||h((function(){return $[E]=!1,j(M)!=M||j($)==$||"/a/i"!=j(M,"i")})));if(a("RegExp",F)){for(var G=function(t,r){var e,n,o,i,a,s,g=l(R,this),d=f(t),y=void 0===r,h=[],m=t;if(!g&&d&&y&&t.constructor===G)return t;if((d||l(R,t))&&(t=t.source,y&&(r=v(m))),t=void 0===t?"":p(t),r=void 0===r?"":p(r),m=t,w&&"dotAll"in M&&(n=!!r&&L(r,"s")>-1)&&(r=T(r,/s/g,"")),e=r,N&&"sticky"in M&&(o=!!r&&L(r,"y")>-1)&&D&&(r=T(r,/y/g,"")),O&&(i=function(t){for(var r,e=t.length,n=0,o="",i=[],a={},u=!1,c=!1,s=0,l="";n<=e;n++){if("\\"===(r=I(t,n)))r+=I(t,++n);else if("]"===r)u=!1;else if(!u)switch(!0){case"["===r:u=!0;break;case"("===r:P(C,_(t,n+1))&&(n+=2,c=!0),o+=r,s++;continue;case">"===r&&c:if(""===l||x(a,l))throw new A("Invalid capture group name");a[l]=!0,i[i.length]=[l,s],c=!1,l="";continue}c?l+=r:o+=r}return[o,i]}(t),t=i[0],h=i[1]),a=u(j(t,r),g?this:R,G),(n||o||h.length)&&(s=b(a),n&&(s.dotAll=!0,s.raw=G(function(t){for(var r,e=t.length,n=0,o="",i=!1;n<=e;n++)"\\"!==(r=I(t,n))?i||"."!==r?("["===r?i=!0:"]"===r&&(i=!1),o+=r):o+="[\\s\\S]":o+=r+I(t,++n);return o}(t),e)),o&&(s.sticky=!0),h.length&&(s.groups=h)),t!==m)try{c(a,"source",""===m?"(?:)":m)}catch(t){}return a},U=s(j),V=0;U.length>V;)d(G,j,U[V++]);R.constructor=G,G.prototype=R,y(o,"RegExp",G,{constructor:!0})}m("RegExp")},7987:(t,r,e)=>{"use strict";var n=e(5266),o=e(5262);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},3786:(t,r,e)=>{"use strict";var n=e(852).PROPER,o=e(8286),i=e(3667),a=e(5409),u=e(3589),c=e(8603),s="toString",l=RegExp.prototype.toString,f=u((function(){return"/a/b"!=l.call({source:"a",flags:"b"})})),p=n&&l.name!=s;(f||p)&&o(RegExp.prototype,s,(function(){var t=i(this);return"/"+a(t.source)+"/"+a(c(t))}),{unsafe:!0})},5911:(t,r,e)=>{"use strict";var n=e(5266),o=e(6834),i=e(6418),a=e(1670),u=e(5409),c=e(6544),s=o("".indexOf);n({target:"String",proto:!0,forced:!c("includes")},{includes:function(t){return!!~s(u(a(this)),u(i(t)),arguments.length>1?arguments[1]:void 0)}})},9570:(t,r,e)=>{"use strict";var n=e(3233),o=e(8937),i=e(6834),a=e(1402),u=e(3589),c=e(3667),s=e(7844),l=e(1587),f=e(163),p=e(5409),v=e(1670),g=e(8257),d=e(8986),y=e(6018),h=e(6718),x=e(1504)("replace"),b=Math.max,m=Math.min,S=i([].concat),w=i([].push),O=i("".indexOf),E=i("".slice),j="$0"==="a".replace(/./,"$0"),R=!!/./[x]&&""===/./[x]("a","$0");a("replace",(function(t,r,e){var i=R?"$":"$0";return[function(t,e){var n=v(this),i=null==t?void 0:d(t,x);return i?o(i,t,n,e):o(r,p(n),t,e)},function(t,o){var a=c(this),u=p(t);if("string"==typeof o&&-1===O(o,i)&&-1===O(o,"$<")){var v=e(r,a,u,o);if(v.done)return v.value}var d=s(o);d||(o=p(o));var x=a.global;if(x){var j=a.unicode;a.lastIndex=0}for(var R=[];;){var A=h(a,u);if(null===A)break;if(w(R,A),!x)break;""===p(A[0])&&(a.lastIndex=g(u,f(a.lastIndex),j))}for(var P,I="",T=0,L=0;L<R.length;L++){for(var _=p((A=R[L])[0]),C=b(m(l(A.index),u.length),0),M=[],$=1;$<A.length;$++)w(M,void 0===(P=A[$])?P:String(P));var k=A.groups;if(d){var N=S([_],M,C,u);void 0!==k&&w(N,k);var D=p(n(o,void 0,N))}else D=y(_,u,C,M,k,o);C>=T&&(I+=E(u,T,C)+D,T=C+_.length)}return I+E(u,T)}]}),!!u((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!j||R)},3222:(t,r,e)=>{"use strict";var n=e(3233),o=e(8937),i=e(6834),a=e(1402),u=e(7754),c=e(3667),s=e(1670),l=e(9002),f=e(8257),p=e(163),v=e(5409),g=e(8986),d=e(6932),y=e(6718),h=e(5262),x=e(8491),b=e(3589),m=x.UNSUPPORTED_Y,S=4294967295,w=Math.min,O=[].push,E=i(/./.exec),j=i(O),R=i("".slice),A=!b((function(){var t=/(?:)/,r=t.exec;t.exec=function(){return r.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]}));a("split",(function(t,r,e){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,e){var i=v(s(this)),a=void 0===e?S:e>>>0;if(0===a)return[];if(void 0===t)return[i];if(!u(t))return o(r,i,t,a);for(var c,l,f,p=[],g=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),y=0,x=new RegExp(t.source,g+"g");(c=o(h,x,i))&&!((l=x.lastIndex)>y&&(j(p,R(i,y,c.index)),c.length>1&&c.index<i.length&&n(O,p,d(c,1)),f=c[0].length,y=l,p.length>=a));)x.lastIndex===c.index&&x.lastIndex++;return y===i.length?!f&&E(x,"")||j(p,""):j(p,R(i,y)),p.length>a?d(p,0,a):p}:"0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:o(r,this,t,e)}:r,[function(r,e){var n=s(this),a=null==r?void 0:g(r,t);return a?o(a,r,n,e):o(i,v(n),r,e)},function(t,n){var o=c(this),a=v(t),u=e(i,o,a,n,i!==r);if(u.done)return u.value;var s=l(o,RegExp),g=o.unicode,d=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(m?"g":"y"),h=new s(m?"^(?:"+o.source+")":o,d),x=void 0===n?S:n>>>0;if(0===x)return[];if(0===a.length)return null===y(h,a)?[a]:[];for(var b=0,O=0,E=[];O<a.length;){h.lastIndex=m?0:O;var A,P=y(h,m?R(a,O):a);if(null===P||(A=w(p(h.lastIndex+(m?O:0)),a.length))===b)O=f(a,O,g);else{if(j(E,R(a,b,O)),E.length===x)return E;for(var I=1;I<=P.length-1;I++)if(j(E,P[I]),E.length===x)return E;O=b=A}}return j(E,R(a,b)),E}]}),!A,m)},938:(t,r,e)=>{var n=e(7643),o=e(4623),i=e(9729),a=e(1682),u=e(5732),c=e(1504),s=c("iterator"),l=c("toStringTag"),f=a.values,p=function(t,r){if(t){if(t[s]!==f)try{u(t,s,f)}catch(r){t[s]=f}if(t[l]||u(t,l,r),o[r])for(var e in a)if(t[e]!==a[e])try{u(t,e,a[e])}catch(r){t[e]=a[e]}}};for(var v in o)p(n[v]&&n[v].prototype,v);p(i,"DOMTokenList")}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n](i,i.exports,e),i.exports}e.n=t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r);var n={};return(()=>{"use strict";e.d(n,{default:()=>i});e(1682),e(84),e(9241),e(938),e(7987),e(9570),e(2266),e(5911),e(3222),e(5807),e(3786),e(4286),e(3590);var t=Object.fromEntries||function(t){for(var r,e,n,o=(Array.isArray(t)?(e=t,n=-1,{next:function(){var t=e.length<=++n;return{done:t,value:t?void 0:e[n]}}}):"entries"in t?t.entries():t),i={};(r=o.next())&&!r.done;){var a=r.value;Object.defineProperty(i,a[0],{configurable:!0,enumerable:!0,writable:!0,value:a[1]})}return i};var r={string:"String",char:"String",int:"Number",integer:"Number",double:"Number",long:"Number",boolean:"Boolean",object:"Object",map:"Object",array:"Array",list:"Array",float:"Number"},o='([\\w="",\\- \\u4e00-\\u9fa5]+)';const i=function(e,n){var i,a,u=(window.clipboardData||e.clipboardData).getData("Text").replace(/\r\n/g,"\n").replace(/\r/g,"\n").replace(/[\n\r]+$/,""),c=u.includes("@RequestParam"),s=u.includes("@ApiModelProperty")||u.includes("private "),l=!u.includes("\t")||c,f=u.split("\n"),p=[],v=n.type,g=void 0===v?c?1:s?2:-1:v;return i=1===g?new RegExp("@RequestParam\\("+o+"\\)"+"[\\n\\r\\t ;]*(@ApiParam\\("+o+"\\))?"+"[\\n\\r\\t ;]*([\\w]+) ([\\w]+)","g"):2===g?new RegExp("(@ApiModelProperty\\("+o+"\\))?"+"[\\n\\r\\t ;]*(private|public)? ?([\\w]+) ([\\w]+)","g"):new RegExp(".+"),f=f.map((function(t,r){var e=t?t.split("\t"):[];return 0===r?a=+e.length:(0===a||r!==f.length-1&&a!==e.length)&&(l=!0),e=e.map((function(t){return t.replace(/\s+/g," ")}))})),l&&(f=f.map((function(t){return t.join("")})).join("")),1===g&&c?(f.replace(i,(function(e,n,o,i,a,u){var c={},s={};if(n.includes("=")||n.includes(",")){var l=n.replace(/\s+/g,"").split(",");l=l.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),c=t(l)}else c={value:n.replace(/^"([\s\S]*)"$/,"$1")};if(void 0===i)console.info("没有ApiParam定义");else if(i.includes("=")||i.includes(",")){var f=i.replace(/\s+/g,"").split(",");f=f.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),s=t(f)}else s={value:i.replace(/^"([\s\S]*)"$/,"$1")};p.push({type:r[a.toLowerCase()]||"String",required:void 0===c.required||c.required,name:c.value||u,defaultValue:s.defaultValue||"",description:s.value||""})})),p):2===g&&s?(f.replace(i,(function(e,n,o,i,a,u){var c={};if(void 0===o)console.info("没有ApiParam定义");else if(o.includes("=")||o.includes(",")){var s=o.replace(/\s+/g,"").split(",");s=s.map((function(t){var r=t.split("=");return/^"[\s\S]*"$/.test(r[1])?r[1]=r[1].replace(/^"([\s\S]*)"$/,"$1"):"true"===r[1]?r[1]=!0:"false"===r[1]?r[1]=!1:r[1]=+r[1],r})),c=t(s)}else c={value:o.replace(/^"([\s\S]*)"$/,"$1")};p.push({required:!0,type:a?r[a.toLowerCase()]:"String",description:c.value||"",defaultValue:"",name:u})})),p):f}})(),n=n.default})()})); |
202
package.json
{ | ||
"name": "clipboard-parser", | ||
"description": "剪贴板内容解析器", | ||
"version": "2.0.1", | ||
"main": "lib/index.js", | ||
"unpkg": "lib/index.js", | ||
"module": "lib/index.esm.js", | ||
"files": [ | ||
"es", | ||
"lib", | ||
"typings" | ||
], | ||
"directories": { | ||
"es": "es", | ||
"lib": "lib", | ||
"src": "src" | ||
}, | ||
"scripts": { | ||
"build": "rimraf lib es && rollup -c", | ||
"build:umd": "webpack --config webpack.config.js", | ||
"build:docs": "sh scripts/docs.sh", | ||
"build:types": "run-s build-temp-types roll-types", | ||
"build-temp-types": "tsc --emitDeclarationOnly --outDir temp/ -p src/", | ||
"patch-types": "node script/patchTypes", | ||
"roll-types": "api-extractor run && rimraf temp", | ||
"dev": "rollup -c -w", | ||
"dist": "run-s eslint prettier build build:umd build:types docs prettier:docs", | ||
"docs": "rimraf docs && typedoc", | ||
"eslint": "eslint --fix --ext .ts,.js", | ||
"prettier": "prettier --write \"**/*.{js,ts,json,md}\"", | ||
"prettier:docs": "prettier --write \"**/*.md\"", | ||
"clean": "rimraf lib es" | ||
}, | ||
"dependencies": { | ||
"core-js": "^3.18.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.12.9", | ||
"@babel/plugin-proposal-class-properties": "^7.14.5", | ||
"@babel/plugin-proposal-decorators": "^7.15.4", | ||
"@babel/plugin-transform-runtime": "^7.15.0", | ||
"@babel/preset-env": "^7.15.6", | ||
"@babel/preset-typescript": "^7.15.0", | ||
"@microsoft/api-extractor": "^7.18.9", | ||
"@rollup/plugin-babel": "^5.3.0", | ||
"@rollup/plugin-commonjs": "^20.0.0", | ||
"@rollup/plugin-node-resolve": "^13.0.4", | ||
"@saqqdy/prettier-config": "^1.0.4", | ||
"@typescript-eslint/eslint-plugin": "^4.31.2", | ||
"@typescript-eslint/parser": "^4.31.2", | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.2.2", | ||
"cross-env": "^7.0.2", | ||
"eslint": "7.32.0", | ||
"eslint-config-sets": "^1.5.3", | ||
"eslint-plugin-prettier": "3.1.4", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "2.4.1", | ||
"progress-bar-webpack-plugin": "^2.1.0", | ||
"rollup": "^2.56.3", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.30.0", | ||
"rollup-plugin-visualizer": "^5.5.2", | ||
"terser-webpack-plugin": "^5.2.4", | ||
"typedoc": "^0.22.4", | ||
"typedoc-plugin-markdown": "^3.11.0", | ||
"typescript": "^4.4.3", | ||
"webpack": "5.53.0", | ||
"webpack-cli": "^4.2.0", | ||
"webpack-merge": "^5.8.0", | ||
"webpack-node-externals": "^3.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/saqqdy/clipboard-parser.git" | ||
}, | ||
"keywords": [ | ||
"clipboard-parser", | ||
"clipboard", | ||
"parser", | ||
"clipboardData", | ||
"剪贴板", | ||
"解析器" | ||
], | ||
"engines": { | ||
"node": ">=10.0.0" | ||
}, | ||
"ci": { | ||
"version": "10, 11, 12, 13, 14, 15" | ||
}, | ||
"author": "saqqdy <saqqdy@qq.com>", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/saqqdy/clipboard-parser/issues" | ||
}, | ||
"homepage": "https://github.com/saqqdy/clipboard-parser#readme" | ||
"name": "clipboard-parser", | ||
"description": "剪贴板内容解析器", | ||
"version": "2.1.0", | ||
"packageManager": "pnpm@7.7.0", | ||
"main": "lib/index.js", | ||
"module": "lib/index.esm.js", | ||
"unpkg": "lib/index.js", | ||
"files": [ | ||
"es", | ||
"lib", | ||
"typings" | ||
], | ||
"directories": { | ||
"es": "es", | ||
"lib": "lib", | ||
"src": "src" | ||
}, | ||
"scripts": { | ||
"build": "rimraf lib es && rollup -c", | ||
"build:umd": "webpack --config webpack.config.js", | ||
"build:docs": "sh scripts/docs.sh", | ||
"build:types": "run-s build-temp-types roll-types", | ||
"build-temp-types": "tsc --emitDeclarationOnly --outDir temp/ -p src/", | ||
"patch-types": "node script/patchTypes", | ||
"roll-types": "api-extractor run && rimraf temp", | ||
"dev": "rollup -c -w", | ||
"pub": "tscjs scripts/publish", | ||
"unpub": "tscjs scripts/unpublish", | ||
"sync": "tscjs scripts/sync", | ||
"dist": "run-s eslint prettier build build:umd build:types docs prettier:docs", | ||
"docs": "rimraf docs && typedoc", | ||
"eslint": "eslint --fix --ext .ts,.js", | ||
"prettier": "prettier --write \"**/*.{js,ts,json,md}\"", | ||
"prettier:docs": "prettier --write \"**/*.md\"", | ||
"clean": "rimraf lib es" | ||
}, | ||
"dependencies": { | ||
"core-js": "^3.18.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.12.9", | ||
"@babel/plugin-proposal-class-properties": "^7.14.5", | ||
"@babel/plugin-proposal-decorators": "^7.15.4", | ||
"@babel/plugin-transform-runtime": "^7.15.0", | ||
"@babel/preset-env": "^7.15.6", | ||
"@babel/preset-typescript": "^7.15.0", | ||
"@eslint-sets/eslint-config-simple-ts": "^3.0.4", | ||
"@microsoft/api-extractor": "^7.18.9", | ||
"@rollup/plugin-babel": "^5.3.0", | ||
"@rollup/plugin-commonjs": "^20.0.0", | ||
"@rollup/plugin-node-resolve": "^13.0.4", | ||
"babel-loader": "^8.2.2", | ||
"cross-env": "^7.0.2", | ||
"eslint": "8.20.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "2.4.1", | ||
"prettier-config-common": "^1.2.1", | ||
"progress-bar-webpack-plugin": "^2.1.0", | ||
"rollup": "^2.56.3", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.30.0", | ||
"rollup-plugin-visualizer": "^5.5.2", | ||
"terser-webpack-plugin": "^5.2.4", | ||
"tsnd": "^1.1.0", | ||
"typedoc": "^0.22.4", | ||
"typedoc-plugin-markdown": "^3.11.0", | ||
"typescript": "^4.4.3", | ||
"webpack": "5.53.0", | ||
"webpack-cli": "^4.2.0", | ||
"webpack-merge": "^5.8.0", | ||
"webpack-node-externals": "^3.0.0" | ||
}, | ||
"keywords": [ | ||
"clipboard-parser", | ||
"clipboard", | ||
"parser", | ||
"clipboardData", | ||
"剪贴板", | ||
"解析器" | ||
], | ||
"license": "ISC", | ||
"author": "saqqdy <saqqdy@qq.com>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/saqqdy/clipboard-parser.git" | ||
}, | ||
"engines": { | ||
"node": ">=10.0.0" | ||
}, | ||
"ci": { | ||
"version": "10, 11, 12, 13, 14, 15" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"ignoreMissing": [ | ||
"tslib", | ||
"webpack" | ||
], | ||
"allowedVersions": { | ||
"eslint": "^8.0.0" | ||
} | ||
} | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/saqqdy/clipboard-parser/issues" | ||
}, | ||
"homepage": "https://github.com/saqqdy/clipboard-parser#readme" | ||
} |
@@ -0,1 +1,3 @@ | ||
<div style="text-align: center;" align="center"> | ||
# clipboard-parser | ||
@@ -9,4 +11,2 @@ | ||
[![Test coverage][codecov-image]][codecov-url] | ||
[![David deps][david-image]][david-url] | ||
[![Known Vulnerabilities][snyk-image]][snyk-url] | ||
[![npm download][download-image]][download-url] | ||
@@ -18,22 +18,3 @@ [![gzip][gzip-image]][gzip-url] | ||
[npm-image]: https://img.shields.io/npm/v/clipboard-parser.svg?style=flat-square | ||
[npm-url]: https://npmjs.org/package/clipboard-parser | ||
[codacy-image]: https://app.codacy.com/project/badge/Grade/f70d4880e4ad4f40aa970eb9ee9d0696 | ||
[codacy-url]: https://www.codacy.com/gh/saqqdy/clipboard-parser/dashboard?utm_source=github.com&utm_medium=referral&utm_content=saqqdy/clipboard-parser&utm_campaign=Badge_Grade | ||
[travis-image]: https://travis-ci.com/saqqdy/clipboard-parser.svg?branch=master | ||
[travis-url]: https://travis-ci.com/saqqdy/clipboard-parser | ||
[codecov-image]: https://img.shields.io/codecov/c/github/saqqdy/clipboard-parser.svg?style=flat-square | ||
[codecov-url]: https://codecov.io/github/saqqdy/clipboard-parser?branch=master | ||
[david-image]: https://img.shields.io/david/saqqdy/clipboard-parser.svg?style=flat-square | ||
[david-url]: https://david-dm.org/saqqdy/clipboard-parser | ||
[snyk-image]: https://snyk.io/test/npm/clipboard-parser/badge.svg?style=flat-square | ||
[snyk-url]: https://snyk.io/test/npm/clipboard-parser | ||
[download-image]: https://img.shields.io/npm/dm/clipboard-parser.svg?style=flat-square | ||
[download-url]: https://npmjs.org/package/clipboard-parser | ||
[gzip-image]: http://img.badgesize.io/https://unpkg.com/clipboard-parser/lib/index.js?compression=gzip&label=gzip%20size:%20JS | ||
[gzip-url]: http://img.badgesize.io/https://unpkg.com/clipboard-parser/lib/index.js?compression=gzip&label=gzip%20size:%20JS | ||
[license-image]: https://img.shields.io/badge/License-MIT-yellow.svg | ||
[license-url]: LICENSE | ||
[sonar-image]: https://sonarcloud.io/api/project_badges/quality_gate?project=saqqdy_clipboard-parser | ||
[sonar-url]: https://sonarcloud.io/dashboard?id=saqqdy_clipboard-parser | ||
</div> | ||
@@ -169,1 +150,18 @@ ## **完整文档请查阅: [API 完整文档](./docs/modules.md)** | ||
``` | ||
[npm-image]: https://img.shields.io/npm/v/clipboard-parser.svg?style=flat-square | ||
[npm-url]: https://npmjs.org/package/clipboard-parser | ||
[codacy-image]: https://app.codacy.com/project/badge/Grade/f70d4880e4ad4f40aa970eb9ee9d0696 | ||
[codacy-url]: https://www.codacy.com/gh/saqqdy/clipboard-parser/dashboard?utm_source=github.com&utm_medium=referral&utm_content=saqqdy/clipboard-parser&utm_campaign=Badge_Grade | ||
[travis-image]: https://travis-ci.com/saqqdy/clipboard-parser.svg?branch=master | ||
[travis-url]: https://travis-ci.com/saqqdy/clipboard-parser | ||
[codecov-image]: https://img.shields.io/codecov/c/github/saqqdy/clipboard-parser.svg?style=flat-square | ||
[codecov-url]: https://codecov.io/github/saqqdy/clipboard-parser?branch=master | ||
[download-image]: https://img.shields.io/npm/dm/clipboard-parser.svg?style=flat-square | ||
[download-url]: https://npmjs.org/package/clipboard-parser | ||
[gzip-image]: http://img.badgesize.io/https://unpkg.com/clipboard-parser/lib/index.js?compression=gzip&label=gzip%20size:%20JS | ||
[gzip-url]: http://img.badgesize.io/https://unpkg.com/clipboard-parser/lib/index.js?compression=gzip&label=gzip%20size:%20JS | ||
[license-image]: https://img.shields.io/badge/License-MIT-yellow.svg | ||
[license-url]: LICENSE | ||
[sonar-image]: https://sonarcloud.io/api/project_badges/quality_gate?project=saqqdy_clipboard-parser | ||
[sonar-url]: https://sonarcloud.io/dashboard?id=saqqdy_clipboard-parser |
59976
31
435
165