@bigbinary/neeto-commons-frontend 2.0.12 → 2.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/pure.js CHANGED
@@ -1,4 +1,4 @@
1
- import { concat, slice, curry, isNil, complement, findLast, findLastIndex, count, fromPairs, toPairs, path, isEmpty, equals } from 'ramda';
1
+ import { curryN, isNil, complement, isEmpty, curry, equals, concat, slice, findLast, findLastIndex, count, fromPairs, toPairs, path } from 'ramda';
2
2
 
3
3
  function _arrayWithHoles(arr) {
4
4
  if (Array.isArray(arr)) return arr;
@@ -71,6 +71,67 @@ function _typeof(obj) {
71
71
  }, _typeof(obj);
72
72
  }
73
73
 
74
+ /**
75
+ * @template {Function} T
76
+ * @param {T} func
77
+ * @returns {T}
78
+ */
79
+
80
+ var nullSafe = function nullSafe(func) {
81
+ return (// @ts-ignore
82
+ curryN(func.length, function () {
83
+ var _ref;
84
+
85
+ var dataArg = (_ref = func.length - 1, _ref < 0 || arguments.length <= _ref ? undefined : arguments[_ref]);
86
+ return isNil(dataArg) ? dataArg : func.apply(void 0, arguments);
87
+ })
88
+ );
89
+ };
90
+ var noop = function noop() {};
91
+ var toLabelAndValue = function toLabelAndValue(string) {
92
+ return {
93
+ label: string,
94
+ value: string
95
+ };
96
+ };
97
+ var getRandomInt = function getRandomInt() {
98
+ var a = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Number.MAX_SAFE_INTEGER;
99
+ var b = arguments.length > 1 ? arguments[1] : undefined;
100
+
101
+ if (b) {
102
+ a = Math.ceil(a);
103
+ b = Math.floor(b);
104
+ } else {
105
+ b = a;
106
+ a = 0;
107
+ }
108
+
109
+ return Math.floor(Math.random() * (b - a) + a);
110
+ };
111
+ var randomPick = function randomPick() {
112
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
113
+ args[_key] = arguments[_key];
114
+ }
115
+
116
+ var randomNumber = getRandomInt(0, args.length);
117
+ return args[randomNumber];
118
+ };
119
+ var dynamicArray = function dynamicArray(count, elementGenerator) {
120
+ return Array.from({
121
+ length: count
122
+ }, function (_, index) {
123
+ return elementGenerator(index);
124
+ });
125
+ };
126
+ var isNotNil = /*#__PURE__*/complement(isNil);
127
+ var isNotEmpty = /*#__PURE__*/complement(isEmpty);
128
+ var notEquals = /*#__PURE__*/curry(function (x, y) {
129
+ return x !== y;
130
+ });
131
+ var isNot = notEquals;
132
+ var notEqualsDeep = /*#__PURE__*/complement(equals);
133
+ var isNotEqualDeep = notEqualsDeep;
134
+
74
135
  var slugify = function slugify(string) {
75
136
  return string.toString().toLowerCase().replace(/\s+/g, "-") // Replace spaces with -
76
137
  .replace(/&/g, "-and-") // Replace & with 'and'
@@ -101,6 +162,14 @@ var capitalize = function capitalize(string) {
101
162
  var truncate = function truncate(string, length) {
102
163
  return string.length > length ? concat(slice(0, length, string), "...") : string;
103
164
  };
165
+ var _slugify = nullSafe(slugify);
166
+ var _humanize = nullSafe(humanize);
167
+ var _snakeToCamelCase = nullSafe(snakeToCamelCase);
168
+ var _camelToSnakeCase = nullSafe(camelToSnakeCase);
169
+ var _capitalize = nullSafe(capitalize);
170
+ var _truncate = function _truncate(string, length) {
171
+ return isNil(string) ? string : truncate(string, length);
172
+ };
104
173
 
105
174
  var matchesImpl = function matchesImpl(pattern, object) {
106
175
  var __parent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : object;
@@ -192,6 +261,7 @@ var filterNonNull = function filterNonNull(object) {
192
261
  return [k, _typeof(v) === "object" && !Array.isArray(v) ? filterNonNull(v) : v];
193
262
  }));
194
263
  };
264
+ var _filterNonNull = nullSafe(filterNonNull);
195
265
 
196
266
  function _defineProperty(obj, key, value) {
197
267
  if (key in obj) {
@@ -322,50 +392,24 @@ var copyKeysDeep = /*#__PURE__*/curry(function (keyMap, objectArray) {
322
392
  return copyKeysSingleObject(object, keyMap);
323
393
  });
324
394
  });
325
-
326
- var noop = function noop() {};
327
- var toLabelAndValue = function toLabelAndValue(string) {
328
- return {
329
- label: string,
330
- value: string
331
- };
332
- };
333
- var getRandomInt = function getRandomInt() {
334
- var a = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Number.MAX_SAFE_INTEGER;
335
- var b = arguments.length > 1 ? arguments[1] : undefined;
336
-
337
- if (b) {
338
- a = Math.ceil(a);
339
- b = Math.floor(b);
340
- } else {
341
- b = a;
342
- a = 0;
343
- }
344
-
345
- return Math.floor(Math.random() * (b - a) + a);
346
- };
347
- var randomPick = function randomPick() {
348
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
349
- args[_key] = arguments[_key];
350
- }
351
-
352
- var randomNumber = getRandomInt(0, args.length);
353
- return args[randomNumber];
354
- };
355
- var dynamicArray = function dynamicArray(count, elementGenerator) {
356
- return Array.from({
357
- length: count
358
- }, function (_, index) {
359
- return elementGenerator(index);
360
- });
361
- };
362
- var isNotNil = /*#__PURE__*/complement(isNil);
363
- var isNotEmpty = /*#__PURE__*/complement(isEmpty);
364
- var notEquals = /*#__PURE__*/curry(function (x, y) {
365
- return x !== y;
366
- });
367
- var isNot = notEquals;
368
- var notEqualsDeep = /*#__PURE__*/complement(equals);
369
- var isNotEqualDeep = notEqualsDeep;
370
-
371
- export { camelToSnakeCase, capitalize, copyKeys, copyKeysDeep, countBy, deepFreezeObject, dynamicArray, existsBy, existsById, filterBy, filterNonNull, findBy, findById, findIndexBy, findIndexById, findLastBy, findLastIndexBy, getRandomInt, humanize, isNot, isNotEmpty, isNotEqualDeep, isNotNil, keysToCamelCase, keysToSnakeCase, matches, modifyBy, modifyById, noop, notEquals, notEqualsDeep, preprocessForSerialization, randomPick, removeBy, removeById, renameKeys, replaceBy, replaceById, serializeKeysToSnakeCase, slugify, snakeToCamelCase, toLabelAndValue, transformObjectDeep, truncate };
395
+ var _removeById = /*#__PURE__*/nullSafe(removeById);
396
+ var _findById = /*#__PURE__*/nullSafe(findById);
397
+ var _replaceById = /*#__PURE__*/nullSafe(replaceById);
398
+ var _modifyById = /*#__PURE__*/nullSafe(modifyById);
399
+ var _findBy = /*#__PURE__*/nullSafe(findBy);
400
+ var _removeBy = /*#__PURE__*/nullSafe(removeBy);
401
+ var _replaceBy = /*#__PURE__*/nullSafe(replaceBy);
402
+ var _modifyBy = /*#__PURE__*/nullSafe(modifyBy);
403
+ var _existsById = /*#__PURE__*/nullSafe(existsById);
404
+ var _existsBy = /*#__PURE__*/nullSafe(existsBy);
405
+ var _findLastBy = /*#__PURE__*/nullSafe(findLastBy);
406
+ var _findIndexById = /*#__PURE__*/nullSafe(findIndexById);
407
+ var _findIndexBy = /*#__PURE__*/nullSafe(findIndexBy);
408
+ var _findLastIndexBy = /*#__PURE__*/nullSafe(findLastIndexBy);
409
+ var _filterBy = /*#__PURE__*/nullSafe(filterBy);
410
+ var _countBy = /*#__PURE__*/nullSafe(countBy);
411
+ var _copyKeys = /*#__PURE__*/nullSafe(copyKeys);
412
+ var _renameKeys = /*#__PURE__*/nullSafe(renameKeys);
413
+ var _copyKeysDeep = /*#__PURE__*/nullSafe(copyKeysDeep);
414
+
415
+ export { _camelToSnakeCase, _capitalize, _copyKeys, _copyKeysDeep, _countBy, _existsBy, _existsById, _filterBy, _filterNonNull, _findBy, _findById, _findIndexBy, _findIndexById, _findLastBy, _findLastIndexBy, _humanize, _modifyBy, _modifyById, _removeBy, _removeById, _renameKeys, _replaceBy, _replaceById, _slugify, _snakeToCamelCase, _truncate, camelToSnakeCase, capitalize, copyKeys, copyKeysDeep, countBy, deepFreezeObject, dynamicArray, existsBy, existsById, filterBy, filterNonNull, findBy, findById, findIndexBy, findIndexById, findLastBy, findLastIndexBy, getRandomInt, humanize, isNot, isNotEmpty, isNotEqualDeep, isNotNil, keysToCamelCase, keysToSnakeCase, matches, modifyBy, modifyById, noop, notEquals, notEqualsDeep, nullSafe, preprocessForSerialization, randomPick, removeBy, removeById, renameKeys, replaceBy, replaceById, serializeKeysToSnakeCase, slugify, snakeToCamelCase, toLabelAndValue, transformObjectDeep, truncate };
@@ -152,9 +152,57 @@ function _typeof$3(obj) {
152
152
  }, _typeof$3(obj);
153
153
  }
154
154
 
155
+ /**
156
+ * @template {Function} T
157
+ * @param {T} func
158
+ * @returns {T}
159
+ */
160
+
161
+ var nullSafe = function nullSafe(func) {
162
+ return (// @ts-ignore
163
+ ramda.curryN(func.length, function () {
164
+ var _ref;
165
+
166
+ var dataArg = (_ref = func.length - 1, _ref < 0 || arguments.length <= _ref ? undefined : arguments[_ref]);
167
+ return ramda.isNil(dataArg) ? dataArg : func.apply(void 0, arguments);
168
+ })
169
+ );
170
+ };
171
+ var noop$2 = function noop() {};
172
+ var isNotEmpty = /*#__PURE__*/ramda.complement(ramda.isEmpty);
173
+
174
+ var slugify = function slugify(string) {
175
+ return string.toString().toLowerCase().replace(/\s+/g, "-") // Replace spaces with -
176
+ .replace(/&/g, "-and-") // Replace & with 'and'
177
+ .replace(/[^\w-]+/g, "") // Remove all non-word characters
178
+ .replace(/--+/g, "-") // Replace multiple - with single -
179
+ .replace(/^-+/, "") // Trim - from start of text
180
+ .replace(/-+$/, "");
181
+ }; // Trim - from end of text
182
+
183
+ var humanize = function humanize(string) {
184
+ string = string.replace(/[_-]+/g, " ").replace(/\s{2,}/g, " ").replace(/([a-z\d])([A-Z])/g, "$1" + " " + "$2").replace(/([A-Z]+)([A-Z][a-z\d]+)/g, "$1" + " " + "$2").toLowerCase().trim();
185
+ string = string.charAt(0).toUpperCase() + string.slice(1);
186
+ return string;
187
+ };
188
+ var snakeToCamelCase = function snakeToCamelCase(string) {
189
+ return string.replace(/(_\w)/g, function (letter) {
190
+ return letter[1].toUpperCase();
191
+ });
192
+ };
193
+ var camelToSnakeCase = function camelToSnakeCase(string) {
194
+ return string.replace(/[A-Z]/g, function (letter) {
195
+ return "_".concat(letter.toLowerCase());
196
+ });
197
+ };
155
198
  var capitalize = function capitalize(string) {
156
199
  return string.charAt(0).toUpperCase() + string.slice(1);
157
200
  };
201
+ nullSafe(slugify);
202
+ nullSafe(humanize);
203
+ nullSafe(snakeToCamelCase);
204
+ nullSafe(camelToSnakeCase);
205
+ nullSafe(capitalize);
158
206
 
159
207
  var matchesImpl = function matchesImpl(pattern, object) {
160
208
  var __parent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : object;
@@ -174,6 +222,21 @@ var matchesImpl = function matchesImpl(pattern, object) {
174
222
  var matches = /*#__PURE__*/ramda.curry(function (pattern, object) {
175
223
  return matchesImpl(pattern, object);
176
224
  });
225
+ var filterNonNull = function filterNonNull(object) {
226
+ return Object.fromEntries(Object.entries(object).filter(function (_ref5) {
227
+ var _ref6 = _slicedToArray(_ref5, 2),
228
+ v = _ref6[1];
229
+
230
+ return !ramda.isNil(v);
231
+ }).map(function (_ref7) {
232
+ var _ref8 = _slicedToArray(_ref7, 2),
233
+ k = _ref8[0],
234
+ v = _ref8[1];
235
+
236
+ return [k, _typeof$3(v) === "object" && !Array.isArray(v) ? filterNonNull(v) : v];
237
+ }));
238
+ };
239
+ nullSafe(filterNonNull);
177
240
 
178
241
  function _defineProperty$1(obj, key, value) {
179
242
  if (key in obj) {
@@ -194,9 +257,6 @@ var removeBy = /*#__PURE__*/ramda.curry(function (pattern, array) {
194
257
  return array.filter(ramda.complement(matches(pattern)));
195
258
  });
196
259
 
197
- var noop$2 = function noop() {};
198
- var isNotEmpty = /*#__PURE__*/ramda.complement(ramda.isEmpty);
199
-
200
260
  var getStorageValue = function getStorageValue(key, defaultValue) {
201
261
  var saved = localStorage.getItem(key);
202
262
  return JSON.parse(saved) || defaultValue;
@@ -51483,7 +51543,7 @@ var languageLoaders = {
51483
51543
  return Promise.resolve().then(function () { return ada$2; });
51484
51544
  }),
51485
51545
  agda: createLanguageAsyncLoader("agda", function () {
51486
- return Promise.resolve().then(function () { return agda; });
51546
+ return Promise.resolve().then(function () { return agda$1; });
51487
51547
  }),
51488
51548
  al: createLanguageAsyncLoader("al", function () {
51489
51549
  return Promise.resolve().then(function () { return al$1; });
@@ -51498,7 +51558,7 @@ var languageLoaders = {
51498
51558
  return Promise.resolve().then(function () { return apex$1; });
51499
51559
  }),
51500
51560
  apl: createLanguageAsyncLoader("apl", function () {
51501
- return Promise.resolve().then(function () { return apl$1; });
51561
+ return Promise.resolve().then(function () { return apl; });
51502
51562
  }),
51503
51563
  applescript: createLanguageAsyncLoader("applescript", function () {
51504
51564
  return Promise.resolve().then(function () { return applescript$2; });
@@ -60971,45 +61031,41 @@ var ada$2 = /*#__PURE__*/_mergeNamespaces({
60971
61031
  'default': ada_1
60972
61032
  }, [ada_1]);
60973
61033
 
60974
- var agda_1;
60975
- var hasRequiredAgda;
60976
-
60977
- function requireAgda () {
60978
- if (hasRequiredAgda) return agda_1;
60979
- hasRequiredAgda = 1;
60980
-
60981
- agda_1 = agda;
60982
- agda.displayName = 'agda';
60983
- agda.aliases = [];
60984
- function agda(Prism) {
61034
+ var agda_1 = agda;
61035
+ agda.displayName = 'agda';
61036
+ agda.aliases = [];
61037
+ function agda(Prism) {
60985
61038
  (function (Prism) {
60986
- Prism.languages.agda = {
60987
- comment: /\{-[\s\S]*?(?:-\}|$)|--.*/,
60988
- string: {
60989
- pattern: /"(?:\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,
60990
- greedy: true
60991
- },
60992
- punctuation: /[(){}⦃⦄.;@]/,
60993
- 'class-name': {
60994
- pattern: /((?:data|record) +)\S+/,
60995
- lookbehind: true
60996
- },
60997
- function: {
60998
- pattern: /(^[ \t]*)(?!\s)[^:\r\n]+(?=:)/m,
60999
- lookbehind: true
61000
- },
61001
- operator: {
61002
- pattern: /(^\s*|\s)(?:[=|:∀→λ\\?_]|->)(?=\s)/,
61003
- lookbehind: true
61004
- },
61005
- keyword:
61006
- /\b(?:Set|abstract|constructor|data|eta-equality|field|forall|hiding|import|in|inductive|infix|infixl|infixr|instance|let|macro|module|mutual|no-eta-equality|open|overlap|pattern|postulate|primitive|private|public|quote|quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|syntax|tactic|unquote|unquoteDecl|unquoteDef|using|variable|where|with)\b/
61007
- };
61008
- })(Prism);
61009
- }
61010
- return agda_1;
61039
+ Prism.languages.agda = {
61040
+ comment: /\{-[\s\S]*?(?:-\}|$)|--.*/,
61041
+ string: {
61042
+ pattern: /"(?:\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,
61043
+ greedy: true
61044
+ },
61045
+ punctuation: /[(){}⦃⦄.;@]/,
61046
+ 'class-name': {
61047
+ pattern: /((?:data|record) +)\S+/,
61048
+ lookbehind: true
61049
+ },
61050
+ function: {
61051
+ pattern: /(^[ \t]*)(?!\s)[^:\r\n]+(?=:)/m,
61052
+ lookbehind: true
61053
+ },
61054
+ operator: {
61055
+ pattern: /(^\s*|\s)(?:[=|:∀→λ\\?_]|->)(?=\s)/,
61056
+ lookbehind: true
61057
+ },
61058
+ keyword:
61059
+ /\b(?:Set|abstract|constructor|data|eta-equality|field|forall|hiding|import|in|inductive|infix|infixl|infixr|instance|let|macro|module|mutual|no-eta-equality|open|overlap|pattern|postulate|primitive|private|public|quote|quoteContext|quoteGoal|quoteTerm|record|renaming|rewrite|syntax|tactic|unquote|unquoteDecl|unquoteDef|using|variable|where|with)\b/
61060
+ };
61061
+ })(Prism);
61011
61062
  }
61012
61063
 
61064
+ var agda$1 = /*#__PURE__*/_mergeNamespaces({
61065
+ __proto__: null,
61066
+ 'default': agda_1
61067
+ }, [agda_1]);
61068
+
61013
61069
  var al_1 = al;
61014
61070
  al.displayName = 'al';
61015
61071
  al.aliases = [];
@@ -61319,49 +61375,53 @@ var apex$1 = /*#__PURE__*/_mergeNamespaces({
61319
61375
  'default': apex_1
61320
61376
  }, [apex_1]);
61321
61377
 
61322
- var apl_1 = apl;
61323
- apl.displayName = 'apl';
61324
- apl.aliases = [];
61325
- function apl(Prism) {
61326
- Prism.languages.apl = {
61327
- comment: /(?:⍝|#[! ]).*$/m,
61328
- string: {
61329
- pattern: /'(?:[^'\r\n]|'')*'/,
61330
- greedy: true
61331
- },
61332
- number:
61333
- /¯?(?:\d*\.?\b\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:(?:\d+(?:\.\d+)?|\.\d+)(?:e[+¯]?\d+)?|¯|∞))?/i,
61334
- statement: /:[A-Z][a-z][A-Za-z]*\b/,
61335
- 'system-function': {
61336
- pattern: /⎕[A-Z]+/i,
61337
- alias: 'function'
61338
- },
61339
- constant: /[⍬⌾#⎕⍞]/,
61340
- function: /[-+×÷⌈⌊∣|⍳⍸?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⊆⊇⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,
61341
- 'monadic-operator': {
61342
- pattern: /[\\\/⌿⍀¨⍨⌶&∥]/,
61343
- alias: 'operator'
61344
- },
61345
- 'dyadic-operator': {
61346
- pattern: /[.⍣⍠⍤∘⌸@⌺⍥]/,
61347
- alias: 'operator'
61348
- },
61349
- assignment: {
61350
- pattern: /←/,
61351
- alias: 'keyword'
61352
- },
61353
- punctuation: /[\[;\]()◇⋄]/,
61354
- dfn: {
61355
- pattern: /[{}⍺⍵⍶⍹∇⍫:]/,
61356
- alias: 'builtin'
61357
- }
61358
- };
61359
- }
61378
+ var apl_1;
61379
+ var hasRequiredApl;
61360
61380
 
61361
- var apl$1 = /*#__PURE__*/_mergeNamespaces({
61362
- __proto__: null,
61363
- 'default': apl_1
61364
- }, [apl_1]);
61381
+ function requireApl () {
61382
+ if (hasRequiredApl) return apl_1;
61383
+ hasRequiredApl = 1;
61384
+
61385
+ apl_1 = apl;
61386
+ apl.displayName = 'apl';
61387
+ apl.aliases = [];
61388
+ function apl(Prism) {
61389
+ Prism.languages.apl = {
61390
+ comment: /(?:⍝|#[! ]).*$/m,
61391
+ string: {
61392
+ pattern: /'(?:[^'\r\n]|'')*'/,
61393
+ greedy: true
61394
+ },
61395
+ number:
61396
+ /¯?(?:\d*\.?\b\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:(?:\d+(?:\.\d+)?|\.\d+)(?:e[+¯]?\d+)?|¯|∞))?/i,
61397
+ statement: /:[A-Z][a-z][A-Za-z]*\b/,
61398
+ 'system-function': {
61399
+ pattern: /⎕[A-Z]+/i,
61400
+ alias: 'function'
61401
+ },
61402
+ constant: /[⍬⌾#⎕⍞]/,
61403
+ function: /[-+×÷⌈⌊∣|⍳⍸?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⊆⊇⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,
61404
+ 'monadic-operator': {
61405
+ pattern: /[\\\/⌿⍀¨⍨⌶&∥]/,
61406
+ alias: 'operator'
61407
+ },
61408
+ 'dyadic-operator': {
61409
+ pattern: /[.⍣⍠⍤∘⌸@⌺⍥]/,
61410
+ alias: 'operator'
61411
+ },
61412
+ assignment: {
61413
+ pattern: /←/,
61414
+ alias: 'keyword'
61415
+ },
61416
+ punctuation: /[\[;\]()◇⋄]/,
61417
+ dfn: {
61418
+ pattern: /[{}⍺⍵⍶⍹∇⍫:]/,
61419
+ alias: 'builtin'
61420
+ }
61421
+ };
61422
+ }
61423
+ return apl_1;
61424
+ }
61365
61425
 
61366
61426
  var applescript_1 = applescript$1;
61367
61427
  applescript$1.displayName = 'applescript';
@@ -84084,12 +84144,12 @@ refractor.register(abap_1);
84084
84144
  refractor.register(abnf_1);
84085
84145
  refractor.register(actionscript_1);
84086
84146
  refractor.register(ada_1);
84087
- refractor.register(requireAgda());
84147
+ refractor.register(agda_1);
84088
84148
  refractor.register(al_1);
84089
84149
  refractor.register(antlr4_1);
84090
84150
  refractor.register(apacheconf_1);
84091
84151
  refractor.register(apex_1);
84092
- refractor.register(apl_1);
84152
+ refractor.register(requireApl());
84093
84153
  refractor.register(applescript_1);
84094
84154
  refractor.register(aql_1);
84095
84155
  refractor.register(arduino_1);
@@ -88012,12 +88072,12 @@ var zephir = /*#__PURE__*/_mergeNamespaces({
88012
88072
  'default': zephirExports
88013
88073
  }, [zephirExports]);
88014
88074
 
88015
- var agdaExports = requireAgda();
88075
+ var aplExports = requireApl();
88016
88076
 
88017
- var agda = /*#__PURE__*/_mergeNamespaces({
88077
+ var apl = /*#__PURE__*/_mergeNamespaces({
88018
88078
  __proto__: null,
88019
- 'default': agdaExports
88020
- }, [agdaExports]);
88079
+ 'default': aplExports
88080
+ }, [aplExports]);
88021
88081
 
88022
88082
  var avroIdlExports = requireAvroIdl();
88023
88083