data-restructor 3.4.2 → 3.4.4

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 (43) hide show
  1. package/.github/workflows/codeql-analysis.yml +4 -4
  2. package/.github/workflows/continuous-integration.yaml +15 -11
  3. package/CHANGELOG.md +38 -1
  4. package/coverage/coverage-summary.json +4 -4
  5. package/coverage/datarestructor.js.html +135 -135
  6. package/coverage/describedfield.js.html +45 -45
  7. package/coverage/index.html +6 -6
  8. package/coverage/templateResolver.js.html +26 -26
  9. package/devdist/datarestructor-ie.js +15 -15
  10. package/devdist/datarestructor.js +6 -6
  11. package/devdist/describedfield-ie.js +4 -4
  12. package/devdist/describedfield.js +3 -3
  13. package/devdist/templateResolver-ie.js +8 -8
  14. package/devdist/templateResolver.js +4 -4
  15. package/dist/datarestructor-ie.js +1 -693
  16. package/dist/datarestructor-ie.js.map +1 -1
  17. package/dist/datarestructor.js +1 -687
  18. package/dist/datarestructor.js.map +1 -1
  19. package/dist/describedfield-ie.js +1 -142
  20. package/dist/describedfield-ie.js.map +1 -1
  21. package/dist/describedfield.js +1 -142
  22. package/dist/describedfield.js.map +1 -1
  23. package/dist/templateResolver-ie.js +1 -82
  24. package/dist/templateResolver-ie.js.map +1 -1
  25. package/dist/templateResolver.js +1 -76
  26. package/dist/templateResolver.js.map +1 -1
  27. package/docs/datarestructor.js.html +1 -1
  28. package/docs/describedfield.js.html +1 -1
  29. package/docs/index.html +1 -1
  30. package/docs/module-datarestructor.DescribedEntryCreator.html +1 -1
  31. package/docs/module-datarestructor.PropertyStructureDescriptionBuilder.html +1 -1
  32. package/docs/module-datarestructor.Restructor.html +1 -1
  33. package/docs/module-datarestructor.Transform.html +1 -1
  34. package/docs/module-datarestructor.html +1 -1
  35. package/docs/module-described_field.DescribedDataFieldBuilder.html +1 -1
  36. package/docs/module-described_field.DescribedDataFieldGroup.html +1 -1
  37. package/docs/module-described_field.html +1 -1
  38. package/docs/module-template_resolver.Resolver.html +1 -1
  39. package/docs/module-template_resolver.html +1 -1
  40. package/docs/templateResolver.js.html +1 -1
  41. package/eslint.config.js +15 -0
  42. package/package.json +13 -12
  43. package/.eslintrc.json +0 -13
@@ -73,7 +73,7 @@
73
73
  localRequire,
74
74
  module,
75
75
  module.exports,
76
- this
76
+ globalObject
77
77
  );
78
78
  }
79
79
 
@@ -142,7 +142,7 @@
142
142
  this[globalName] = mainExports;
143
143
  }
144
144
  }
145
- })({"4dShw":[function(require,module,exports) {
145
+ })({"btK3Z":[function(require,module,exports,__globalThis) {
146
146
  "use strict";
147
147
  require("b3504c6476ecf38d");
148
148
  require("89ce2effd221e06f");
@@ -151,7 +151,7 @@ module.exports = {
151
151
  template_resolver: template_resolver
152
152
  };
153
153
 
154
- },{"b3504c6476ecf38d":"dCgG6","89ce2effd221e06f":"8vHia","875b6c9f7bedeb5":"5qyN0"}],"dCgG6":[function(require,module,exports) {
154
+ },{"b3504c6476ecf38d":"eZRd3","89ce2effd221e06f":"7uZBC","875b6c9f7bedeb5":"bUhQb"}],"eZRd3":[function(require,module,exports,__globalThis) {
155
155
  //https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf#Polyfill
156
156
  if (!Array.prototype.indexOf) Array.prototype.indexOf = function(Object1, max, min) {
157
157
  "use strict";
@@ -169,16 +169,16 @@ if (!Array.prototype.indexOf) Array.prototype.indexOf = function(Object1, max, m
169
169
  };
170
170
  }(Object, Math.max, Math.min);
171
171
 
172
- },{}],"8vHia":[function(require,module,exports) {
172
+ },{}],"7uZBC":[function(require,module,exports,__globalThis) {
173
173
  //http://tokenposts.blogspot.com/2012/04/javascript-objectkeys-browser.html
174
174
  if (!Object.keys) Object.keys = function(o) {
175
- if (o !== Object(o)) throw new TypeError("Object.keys called on a non-object");
175
+ if (o !== Object(o)) throw new TypeError('Object.keys called on a non-object');
176
176
  var k = [], p;
177
177
  for(p in o)if (Object.prototype.hasOwnProperty.call(o, p)) k.push(p);
178
178
  return k;
179
179
  };
180
180
 
181
- },{}],"5qyN0":[function(require,module,exports) {
181
+ },{}],"bUhQb":[function(require,module,exports,__globalThis) {
182
182
  /**
183
183
  * @file Provides a simple template resolver, that replaces variables in double curly brackets with the values of a given object.
184
184
  * @version {@link https://github.com/JohT/data-restructor-js/releases/latest latest version}
@@ -323,7 +323,7 @@ template_resolver.Resolver = function() {
323
323
  return Resolver;
324
324
  }();
325
325
 
326
- },{"cbde56e74c44f93f":"i4dBQ"}],"i4dBQ":[function(require,module,exports) {
326
+ },{"cbde56e74c44f93f":"4biBi"}],"4biBi":[function(require,module,exports,__globalThis) {
327
327
  "use strict";
328
328
  /**
329
329
  * @fileOverview Modded (compatibility, recursion depth) version of: https://stackoverflow.com/questions/19098797/fastest-way-to-flatten-un-flatten-nested-json-objectss
@@ -379,5 +379,5 @@ template_resolver.Resolver = function() {
379
379
  return result;
380
380
  };
381
381
 
382
- },{}]},["4dShw"], "4dShw", "parcelRequirec1f2")
382
+ },{}]},["btK3Z"], "btK3Z", "parcelRequire94c2")
383
383
 
@@ -73,7 +73,7 @@
73
73
  localRequire,
74
74
  module,
75
75
  module.exports,
76
- this
76
+ globalObject
77
77
  );
78
78
  }
79
79
 
@@ -142,7 +142,7 @@
142
142
  this[globalName] = mainExports;
143
143
  }
144
144
  }
145
- })({"5qyN0":[function(require,module,exports) {
145
+ })({"bUhQb":[function(require,module,exports,__globalThis) {
146
146
  /**
147
147
  * @file Provides a simple template resolver, that replaces variables in double curly brackets with the values of a given object.
148
148
  * @version {@link https://github.com/JohT/data-restructor-js/releases/latest latest version}
@@ -287,7 +287,7 @@ template_resolver.Resolver = function() {
287
287
  return Resolver;
288
288
  }();
289
289
 
290
- },{"cbde56e74c44f93f":"i4dBQ"}],"i4dBQ":[function(require,module,exports) {
290
+ },{"cbde56e74c44f93f":"4biBi"}],"4biBi":[function(require,module,exports,__globalThis) {
291
291
  "use strict";
292
292
  /**
293
293
  * @fileOverview Modded (compatibility, recursion depth) version of: https://stackoverflow.com/questions/19098797/fastest-way-to-flatten-un-flatten-nested-json-objectss
@@ -343,5 +343,5 @@ template_resolver.Resolver = function() {
343
343
  return result;
344
344
  };
345
345
 
346
- },{}]},["5qyN0"], "5qyN0", "parcelRequirec1f2")
346
+ },{}]},["bUhQb"], "bUhQb", "parcelRequire94c2")
347
347