@teselagen/ui 0.0.23 → 0.0.24

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.
Files changed (2) hide show
  1. package/index.umd.js +156 -109
  2. package/package.json +5 -5
package/index.umd.js CHANGED
@@ -23264,7 +23264,7 @@
23264
23264
  var ownKeys$3 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
23265
23265
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
23266
23266
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
23267
- function toPrimitive$3(value) {
23267
+ function toPrimitive$2(value) {
23268
23268
  return value === null ? null : typeof value === "object" ? "" + value : value;
23269
23269
  }
23270
23270
  function hasProp(target, prop) {
@@ -24193,7 +24193,7 @@
24193
24193
  return this.name_ + "[" + this.value_ + "]";
24194
24194
  };
24195
24195
  _proto.valueOf = function valueOf() {
24196
- return toPrimitive$3(this.get());
24196
+ return toPrimitive$2(this.get());
24197
24197
  };
24198
24198
  _proto[_Symbol$toPrimitive] = function () {
24199
24199
  return this.valueOf();
@@ -24421,7 +24421,7 @@
24421
24421
  return this.name_ + "[" + this.derivation.toString() + "]";
24422
24422
  };
24423
24423
  _proto.valueOf = function valueOf() {
24424
- return toPrimitive$3(this.get());
24424
+ return toPrimitive$2(this.get());
24425
24425
  };
24426
24426
  _proto[_Symbol$toPrimitive$1] = function () {
24427
24427
  return this.valueOf();
@@ -54892,10 +54892,18 @@
54892
54892
  }
54893
54893
  };
54894
54894
 
54895
- // Thank's IE8 for his funny defineProperty
54896
- var _descriptors = !_fails(function () {
54897
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
54898
- });
54895
+ var _descriptors;
54896
+ var hasRequired_descriptors;
54897
+
54898
+ function require_descriptors () {
54899
+ if (hasRequired_descriptors) return _descriptors;
54900
+ hasRequired_descriptors = 1;
54901
+ // Thank's IE8 for his funny defineProperty
54902
+ _descriptors = !_fails(function () {
54903
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
54904
+ });
54905
+ return _descriptors;
54906
+ }
54899
54907
 
54900
54908
  var _domCreate;
54901
54909
  var hasRequired_domCreate;
@@ -54913,9 +54921,17 @@
54913
54921
  return _domCreate;
54914
54922
  }
54915
54923
 
54916
- var _ie8DomDefine = !_descriptors && !_fails(function () {
54917
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
54918
- });
54924
+ var _ie8DomDefine;
54925
+ var hasRequired_ie8DomDefine;
54926
+
54927
+ function require_ie8DomDefine () {
54928
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
54929
+ hasRequired_ie8DomDefine = 1;
54930
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
54931
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
54932
+ });
54933
+ return _ie8DomDefine;
54934
+ }
54919
54935
 
54920
54936
  // 7.1.1 ToPrimitive(input [, PreferredType])
54921
54937
  var isObject$6 = _isObject;
@@ -54930,22 +54946,29 @@
54930
54946
  throw TypeError("Can't convert object to primitive value");
54931
54947
  };
54932
54948
 
54933
- var anObject$5 = _anObject;
54934
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
54935
- var toPrimitive$2 = _toPrimitive;
54936
- var dP$3 = Object.defineProperty;
54949
+ var hasRequired_objectDp;
54937
54950
 
54938
- _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
54939
- anObject$5(O);
54940
- P = toPrimitive$2(P, true);
54941
- anObject$5(Attributes);
54942
- if (IE8_DOM_DEFINE$1) try {
54943
- return dP$3(O, P, Attributes);
54944
- } catch (e) { /* empty */ }
54945
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
54946
- if ('value' in Attributes) O[P] = Attributes.value;
54947
- return O;
54948
- };
54951
+ function require_objectDp () {
54952
+ if (hasRequired_objectDp) return _objectDp;
54953
+ hasRequired_objectDp = 1;
54954
+ var anObject = _anObject;
54955
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
54956
+ var toPrimitive = _toPrimitive;
54957
+ var dP = Object.defineProperty;
54958
+
54959
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
54960
+ anObject(O);
54961
+ P = toPrimitive(P, true);
54962
+ anObject(Attributes);
54963
+ if (IE8_DOM_DEFINE) try {
54964
+ return dP(O, P, Attributes);
54965
+ } catch (e) { /* empty */ }
54966
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
54967
+ if ('value' in Attributes) O[P] = Attributes.value;
54968
+ return O;
54969
+ };
54970
+ return _objectDp;
54971
+ }
54949
54972
 
54950
54973
  var _propertyDesc = function (bitmap, value) {
54951
54974
  return {
@@ -54956,10 +54979,10 @@
54956
54979
  };
54957
54980
  };
54958
54981
 
54959
- var dP$2 = _objectDp;
54982
+ var dP$1 = require_objectDp();
54960
54983
  var createDesc$3 = _propertyDesc;
54961
- var _hide = _descriptors ? function (object, key, value) {
54962
- return dP$2.f(object, key, createDesc$3(1, value));
54984
+ var _hide = require_descriptors() ? function (object, key, value) {
54985
+ return dP$1.f(object, key, createDesc$3(1, value));
54963
54986
  } : function (object, key, value) {
54964
54987
  object[key] = value;
54965
54988
  return object;
@@ -54975,7 +54998,7 @@
54975
54998
  var ctx$1 = _ctx;
54976
54999
  var hide$2 = _hide;
54977
55000
  var has$b = _has;
54978
- var PROTOTYPE$2 = 'prototype';
55001
+ var PROTOTYPE$1 = 'prototype';
54979
55002
 
54980
55003
  var $export$8 = function (type, name, source) {
54981
55004
  var IS_FORCED = type & $export$8.F;
@@ -54985,8 +55008,8 @@
54985
55008
  var IS_BIND = type & $export$8.B;
54986
55009
  var IS_WRAP = type & $export$8.W;
54987
55010
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
54988
- var expProto = exports[PROTOTYPE$2];
54989
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
55011
+ var expProto = exports[PROTOTYPE$1];
55012
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
54990
55013
  var key, own, out;
54991
55014
  if (IS_GLOBAL) source = name;
54992
55015
  for (key in source) {
@@ -55010,7 +55033,7 @@
55010
55033
  } return new C(a, b, c);
55011
55034
  } return C.apply(this, arguments);
55012
55035
  };
55013
- F[PROTOTYPE$2] = C[PROTOTYPE$2];
55036
+ F[PROTOTYPE$1] = C[PROTOTYPE$1];
55014
55037
  return F;
55015
55038
  // make static versions for prototype methods
55016
55039
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -55039,12 +55062,20 @@
55039
55062
  return toString$4.call(it).slice(8, -1);
55040
55063
  };
55041
55064
 
55042
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
55043
- var cof$2 = _cof;
55044
- // eslint-disable-next-line no-prototype-builtins
55045
- var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
55046
- return cof$2(it) == 'String' ? it.split('') : Object(it);
55047
- };
55065
+ var _iobject;
55066
+ var hasRequired_iobject;
55067
+
55068
+ function require_iobject () {
55069
+ if (hasRequired_iobject) return _iobject;
55070
+ hasRequired_iobject = 1;
55071
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
55072
+ var cof = _cof;
55073
+ // eslint-disable-next-line no-prototype-builtins
55074
+ _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
55075
+ return cof(it) == 'String' ? it.split('') : Object(it);
55076
+ };
55077
+ return _iobject;
55078
+ }
55048
55079
 
55049
55080
  // 7.2.1 RequireObjectCoercible(argument)
55050
55081
  var _defined = function (it) {
@@ -55053,7 +55084,7 @@
55053
55084
  };
55054
55085
 
55055
55086
  // to indexed object, toObject with fallback for non-array-like ES3 strings
55056
- var IObject = _iobject;
55087
+ var IObject = require_iobject();
55057
55088
  var defined$2 = _defined;
55058
55089
  var _toIobject = function (it) {
55059
55090
  return IObject(defined$2(it));
@@ -55139,14 +55170,14 @@
55139
55170
  var has$a = _has;
55140
55171
  var toIObject$4 = _toIobject;
55141
55172
  var arrayIndexOf = _arrayIncludes(false);
55142
- var IE_PROTO$2 = _sharedKey('IE_PROTO');
55173
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
55143
55174
 
55144
55175
  var _objectKeysInternal = function (object, names) {
55145
55176
  var O = toIObject$4(object);
55146
55177
  var i = 0;
55147
55178
  var result = [];
55148
55179
  var key;
55149
- for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
55180
+ for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
55150
55181
  // Don't enum bug & hidden keys
55151
55182
  while (names.length > i) if (has$a(O, key = names[i++])) {
55152
55183
  ~arrayIndexOf(result, key) || result.push(key);
@@ -55161,10 +55192,10 @@
55161
55192
 
55162
55193
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
55163
55194
  var $keys$3 = _objectKeysInternal;
55164
- var enumBugKeys$1 = _enumBugKeys;
55195
+ var enumBugKeys = _enumBugKeys;
55165
55196
 
55166
55197
  var _objectKeys = Object.keys || function keys(O) {
55167
- return $keys$3(O, enumBugKeys$1);
55198
+ return $keys$3(O, enumBugKeys);
55168
55199
  };
55169
55200
 
55170
55201
  var _objectGops = {};
@@ -55195,12 +55226,12 @@
55195
55226
  if (hasRequired_objectAssign) return _objectAssign;
55196
55227
  hasRequired_objectAssign = 1;
55197
55228
  // 19.1.2.1 Object.assign(target, source, ...)
55198
- var DESCRIPTORS = _descriptors;
55229
+ var DESCRIPTORS = require_descriptors();
55199
55230
  var getKeys = _objectKeys;
55200
55231
  var gOPS = _objectGops;
55201
55232
  var pIE = require_objectPie();
55202
55233
  var toObject = _toObject;
55203
- var IObject = _iobject;
55234
+ var IObject = require_iobject();
55204
55235
  var $assign = Object.assign;
55205
55236
 
55206
55237
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -55271,19 +55302,27 @@
55271
55302
 
55272
55303
  var _redefine = _hide;
55273
55304
 
55274
- var dP$1 = _objectDp;
55275
- var anObject$4 = _anObject;
55276
- var getKeys$1 = _objectKeys;
55305
+ var _objectDps;
55306
+ var hasRequired_objectDps;
55277
55307
 
55278
- var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
55279
- anObject$4(O);
55280
- var keys = getKeys$1(Properties);
55281
- var length = keys.length;
55282
- var i = 0;
55283
- var P;
55284
- while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
55285
- return O;
55286
- };
55308
+ function require_objectDps () {
55309
+ if (hasRequired_objectDps) return _objectDps;
55310
+ hasRequired_objectDps = 1;
55311
+ var dP = require_objectDp();
55312
+ var anObject = _anObject;
55313
+ var getKeys = _objectKeys;
55314
+
55315
+ _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
55316
+ anObject(O);
55317
+ var keys = getKeys(Properties);
55318
+ var length = keys.length;
55319
+ var i = 0;
55320
+ var P;
55321
+ while (length > i) dP.f(O, P = keys[i++], Properties[P]);
55322
+ return O;
55323
+ };
55324
+ return _objectDps;
55325
+ }
55287
55326
 
55288
55327
  var _html;
55289
55328
  var hasRequired_html;
@@ -55296,47 +55335,55 @@
55296
55335
  return _html;
55297
55336
  }
55298
55337
 
55299
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55300
- var anObject$3 = _anObject;
55301
- var dPs = _objectDps;
55302
- var enumBugKeys = _enumBugKeys;
55303
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
55304
- var Empty = function () { /* empty */ };
55305
- var PROTOTYPE$1 = 'prototype';
55338
+ var _objectCreate;
55339
+ var hasRequired_objectCreate;
55306
55340
 
55307
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
55308
- var createDict = function () {
55309
- // Thrash, waste and sodomy: IE GC bug
55310
- var iframe = require_domCreate()('iframe');
55311
- var i = enumBugKeys.length;
55312
- var lt = '<';
55313
- var gt = '>';
55314
- var iframeDocument;
55315
- iframe.style.display = 'none';
55316
- require_html().appendChild(iframe);
55317
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55318
- // createDict = iframe.contentWindow.Object;
55319
- // html.removeChild(iframe);
55320
- iframeDocument = iframe.contentWindow.document;
55321
- iframeDocument.open();
55322
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55323
- iframeDocument.close();
55324
- createDict = iframeDocument.F;
55325
- while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
55326
- return createDict();
55327
- };
55328
-
55329
- var _objectCreate = Object.create || function create(O, Properties) {
55330
- var result;
55331
- if (O !== null) {
55332
- Empty[PROTOTYPE$1] = anObject$3(O);
55333
- result = new Empty();
55334
- Empty[PROTOTYPE$1] = null;
55335
- // add "__proto__" for Object.getPrototypeOf polyfill
55336
- result[IE_PROTO$1] = O;
55337
- } else result = createDict();
55338
- return Properties === undefined ? result : dPs(result, Properties);
55339
- };
55341
+ function require_objectCreate () {
55342
+ if (hasRequired_objectCreate) return _objectCreate;
55343
+ hasRequired_objectCreate = 1;
55344
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55345
+ var anObject = _anObject;
55346
+ var dPs = require_objectDps();
55347
+ var enumBugKeys = _enumBugKeys;
55348
+ var IE_PROTO = _sharedKey('IE_PROTO');
55349
+ var Empty = function () { /* empty */ };
55350
+ var PROTOTYPE = 'prototype';
55351
+
55352
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
55353
+ var createDict = function () {
55354
+ // Thrash, waste and sodomy: IE GC bug
55355
+ var iframe = require_domCreate()('iframe');
55356
+ var i = enumBugKeys.length;
55357
+ var lt = '<';
55358
+ var gt = '>';
55359
+ var iframeDocument;
55360
+ iframe.style.display = 'none';
55361
+ require_html().appendChild(iframe);
55362
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55363
+ // createDict = iframe.contentWindow.Object;
55364
+ // html.removeChild(iframe);
55365
+ iframeDocument = iframe.contentWindow.document;
55366
+ iframeDocument.open();
55367
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55368
+ iframeDocument.close();
55369
+ createDict = iframeDocument.F;
55370
+ while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
55371
+ return createDict();
55372
+ };
55373
+
55374
+ _objectCreate = Object.create || function create(O, Properties) {
55375
+ var result;
55376
+ if (O !== null) {
55377
+ Empty[PROTOTYPE] = anObject(O);
55378
+ result = new Empty();
55379
+ Empty[PROTOTYPE] = null;
55380
+ // add "__proto__" for Object.getPrototypeOf polyfill
55381
+ result[IE_PROTO] = O;
55382
+ } else result = createDict();
55383
+ return Properties === undefined ? result : dPs(result, Properties);
55384
+ };
55385
+ return _objectCreate;
55386
+ }
55340
55387
 
55341
55388
  var _wks = {exports: {}};
55342
55389
 
@@ -55354,7 +55401,7 @@
55354
55401
 
55355
55402
  var _wksExports = _wks.exports;
55356
55403
 
55357
- var def = _objectDp.f;
55404
+ var def = require_objectDp().f;
55358
55405
  var has$9 = _has;
55359
55406
  var TAG$1 = _wksExports('toStringTag');
55360
55407
 
@@ -55362,7 +55409,7 @@
55362
55409
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
55363
55410
  };
55364
55411
 
55365
- var create$3 = _objectCreate;
55412
+ var create$3 = require_objectCreate();
55366
55413
  var descriptor = _propertyDesc;
55367
55414
  var setToStringTag$2 = _setToStringTag;
55368
55415
  var IteratorPrototype = {};
@@ -55668,7 +55715,7 @@
55668
55715
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
55669
55716
  };
55670
55717
 
55671
- var $defineProperty$1 = _objectDp;
55718
+ var $defineProperty$1 = require_objectDp();
55672
55719
  var createDesc$2 = _propertyDesc;
55673
55720
 
55674
55721
  var _createProperty = function (object, index, value) {
@@ -55801,7 +55848,7 @@
55801
55848
 
55802
55849
  var $export$3 = _export;
55803
55850
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
55804
- $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
55851
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
55805
55852
 
55806
55853
  var $Object$1 = _coreExports.Object;
55807
55854
  var defineProperty$6 = function defineProperty(it, key, desc) {
@@ -55849,7 +55896,7 @@
55849
55896
  var META$1 = _uid('meta');
55850
55897
  var isObject$5 = _isObject;
55851
55898
  var has$7 = _has;
55852
- var setDesc = _objectDp.f;
55899
+ var setDesc = require_objectDp().f;
55853
55900
  var id = 0;
55854
55901
  var isExtensible = Object.isExtensible || function () {
55855
55902
  return true;
@@ -55904,7 +55951,7 @@
55904
55951
 
55905
55952
  var core = _coreExports;
55906
55953
  var wksExt$1 = _wksExt;
55907
- var defineProperty$4 = _objectDp.f;
55954
+ var defineProperty$4 = require_objectDp().f;
55908
55955
  var _wksDefine = function (name) {
55909
55956
  var $Symbol = core.Symbol || (core.Symbol = {} );
55910
55957
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$4($Symbol, name, { value: wksExt$1.f(name) });
@@ -55971,10 +56018,10 @@
55971
56018
  var toIObject$1 = _toIobject;
55972
56019
  var toPrimitive$1 = _toPrimitive;
55973
56020
  var has$6 = _has;
55974
- var IE8_DOM_DEFINE = _ie8DomDefine;
56021
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
55975
56022
  var gOPD$2 = Object.getOwnPropertyDescriptor;
55976
56023
 
55977
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
56024
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
55978
56025
  O = toIObject$1(O);
55979
56026
  P = toPrimitive$1(P, true);
55980
56027
  if (IE8_DOM_DEFINE) try {
@@ -55986,7 +56033,7 @@
55986
56033
  // ECMAScript 6 symbols shim
55987
56034
  var global$1 = _globalExports;
55988
56035
  var has$5 = _has;
55989
- var DESCRIPTORS = _descriptors;
56036
+ var DESCRIPTORS = require_descriptors();
55990
56037
  var $export$2 = _export;
55991
56038
  var redefine = _redefine;
55992
56039
  var META = _metaExports.KEY;
@@ -56005,11 +56052,11 @@
56005
56052
  var toIObject = _toIobject;
56006
56053
  var toPrimitive = _toPrimitive;
56007
56054
  var createDesc = _propertyDesc;
56008
- var _create$1 = _objectCreate;
56055
+ var _create$1 = require_objectCreate();
56009
56056
  var gOPNExt = _objectGopnExt;
56010
56057
  var $GOPD = _objectGopd;
56011
56058
  var $GOPS = _objectGops;
56012
- var $DP = _objectDp;
56059
+ var $DP = require_objectDp();
56013
56060
  var $keys$1 = _objectKeys;
56014
56061
  var gOPD$1 = $GOPD.f;
56015
56062
  var dP = $DP.f;
@@ -56315,7 +56362,7 @@
56315
56362
 
56316
56363
  var $export = _export;
56317
56364
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
56318
- $export($export.S, 'Object', { create: _objectCreate });
56365
+ $export($export.S, 'Object', { create: require_objectCreate() });
56319
56366
 
56320
56367
  var $Object = _coreExports.Object;
56321
56368
  var create$2 = function create(P, D) {
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "main": "./src/index.js",
5
- "type": "module",
6
5
  "dependencies": {
7
- "@teselagen/file-utils": "0.2.25",
8
- "@teselagen/bounce-loader": "0.0.12",
6
+ "@teselagen/file-utils": "0.2.26",
7
+ "@teselagen/bounce-loader": "0.0.13",
9
8
  "@blueprintjs/core": "3.52.0",
10
9
  "@blueprintjs/datetime": "3.23.19",
11
10
  "@blueprintjs/icons": "3.33.0",
@@ -50,5 +49,6 @@
50
49
  "url-join": "^4.0.1",
51
50
  "use-deep-compare-effect": "^1.6.1",
52
51
  "write-excel-file": "^1.4.25"
53
- }
52
+ },
53
+ "type": "commonjs"
54
54
  }