spyne 0.14.8 → 0.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/.travis.yml +2 -2
  2. package/karma.conf.js +27 -20
  3. package/lib/channel-action-filter.test.2418910233.js +20 -0
  4. package/lib/channel-dom.test.1490741340.js +20 -0
  5. package/lib/channel-fetch-util.test.3681936279.js +20 -0
  6. package/lib/channel-fetch.test.380764798.js +20 -0
  7. package/lib/channel-payload-class.test.2325155642.js +20 -0
  8. package/lib/channel-payload-filter.test.1598505124.js +20 -0
  9. package/lib/channel-route.test.921296320.js +20 -0
  10. package/lib/channel-stream-item.test.159699696.js +20 -0
  11. package/lib/channel-ui.test.291129654.js +20 -0
  12. package/lib/channel-util-dom.test.181212370.js +20 -0
  13. package/lib/channel.test.706832124.js +20 -0
  14. package/lib/commons.js +50363 -0
  15. package/lib/dom-el-selectors.test.3296414834.js +20 -0
  16. package/lib/dom-el-template.test.1459850380.js +20 -0
  17. package/lib/dom-el.test.2449130808.js +20 -0
  18. package/lib/frp-tools.test.1620088187.js +20 -0
  19. package/lib/import.test.723835576.js +20 -0
  20. package/lib/index.test.2146503294.js +20 -0
  21. package/lib/plugins-methods.test.3482246428.js +20 -0
  22. package/lib/route-utils.test.2932649409.js +20 -0
  23. package/lib/runtime.js +174 -0
  24. package/lib/spyne-app-properties.test.485192211.js +20 -0
  25. package/lib/spyne-app.test.4150724251.js +20 -0
  26. package/lib/spyne-plugin.test.3993976219.js +20 -0
  27. package/lib/spyne.js +15477 -18467
  28. package/lib/spyne.min.js +2 -12
  29. package/lib/spyne.min.js.LICENSE.txt +10 -0
  30. package/lib/url-utils.test.3668806082.js +20 -0
  31. package/lib/view-stream-broadcaster.test.2534955231.js +20 -0
  32. package/lib/view-stream-enhancer-loader.test.3395418180.js +20 -0
  33. package/lib/view-stream-enhancer.test.1043626253.js +20 -0
  34. package/lib/view-stream.test.1765314964.js +20 -0
  35. package/package.json +37 -65
  36. package/src/spyne/channels/channel-fetch-class.js +24 -1
  37. package/src/spyne/channels/channel-payload-class.js +102 -11
  38. package/src/spyne/channels/channel-proxy.js +6 -4
  39. package/src/spyne/channels/channel.js +66 -6
  40. package/src/spyne/channels/channels-config.js +2 -2
  41. package/src/spyne/channels/{channels-delegator.js → channels-map.js} +37 -21
  42. package/src/spyne/channels/spyne-channel-lifecycle.js +1 -1
  43. package/src/spyne/channels/spyne-channel-route.js +95 -15
  44. package/src/spyne/channels/spyne-channel-ui.js +1 -0
  45. package/src/spyne/channels/spyne-channel-window.js +60 -20
  46. package/src/spyne/spyne-app.js +181 -0
  47. package/src/spyne/spyne-plugins.js +146 -0
  48. package/src/spyne/spyne.js +11 -139
  49. package/src/spyne/utils/channel-fetch-util.js +1 -1
  50. package/src/spyne/utils/channel-payload-filter.js +166 -30
  51. package/src/spyne/utils/frp-tools.js +21 -1
  52. package/src/spyne/utils/mixins/base-streams-mixins.js +1 -0
  53. package/src/spyne/utils/spyne-app-properties.js +213 -0
  54. package/src/spyne/utils/spyne-logger.js +18 -0
  55. package/src/spyne/utils/spyne-plugins-methods.js +105 -0
  56. package/src/spyne/utils/spyne-scroll-lock.js +95 -0
  57. package/src/spyne/utils/spyne-utils-channel-route-url.js +2 -1
  58. package/src/spyne/utils/spyne-utils-channel-route.js +3 -1
  59. package/src/spyne/utils/spyne-utils-channel-window.js +2 -2
  60. package/src/spyne/views/dom-element-template.js +52 -23
  61. package/src/spyne/views/dom-element.js +11 -2
  62. package/src/spyne/views/view-stream-broadcaster.js +3 -3
  63. package/src/spyne/views/view-stream-payload.js +76 -15
  64. package/src/spyne/views/view-stream-selector.js +2 -2
  65. package/src/spyne/views/view-stream.js +219 -115
  66. package/src/tests/channels/channel-fetch.test.js +102 -0
  67. package/src/tests/channels/channel-payload-class.test.js +149 -0
  68. package/src/tests/channels/channel-payload-filter.test.js +298 -0
  69. package/src/tests/channels/channel-route.test.js +76 -1
  70. package/src/tests/channels/channel-stream-item.test.js +3 -2
  71. package/src/tests/channels/channel.test.js +38 -0
  72. package/src/tests/channels/route-utils.test.js +1 -1
  73. package/src/tests/index.js +0 -1
  74. package/src/tests/index.test.js +6 -0
  75. package/src/tests/mocks/channel-payload-data.js +93 -1
  76. package/src/tests/mocks/msf-user-data-small.json +4103 -0
  77. package/src/tests/mocks/msf-user-data.json +47035 -0
  78. package/src/tests/mocks/utils-data.js +20 -2
  79. package/src/tests/spyne-app.test.js +27 -0
  80. package/src/tests/spyne-plugin.test.js +49 -0
  81. package/src/tests/utils/channel-action-filter.test.js +22 -11
  82. package/src/tests/utils/channel-data-packet-generator.unused.js +119 -0
  83. package/src/tests/utils/plugins-methods.test.js +103 -0
  84. package/src/tests/utils/spyne-app-properties.test.js +11 -0
  85. package/src/tests/views/dom-el-selectors.test.js +1 -1
  86. package/webpack.config.js +30 -15
  87. package/lib/spyne.js.map +0 -1
  88. package/src/spyne/utils/viewstream-dom-utils.js +0 -8
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[12],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(658)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[13],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(659)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[14],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(661)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[15],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(655)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory();
4
+ else if(typeof define === 'function' && define.amd)
5
+ define("spyne", [], factory);
6
+ else if(typeof exports === 'object')
7
+ exports["spyne"] = factory();
8
+ else
9
+ root["spyne"] = factory();
10
+ })(self, function() {
11
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([["import.test.723835576"],{},
12
+ /******/ __webpack_require__ => { // webpackRuntimeModules
13
+ /******/ "use strict";
14
+ /******/
15
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
16
+ /******/ __webpack_require__.O(0, ["commons"], () => (__webpack_exec__("./src/tests/import.test.js")));
17
+ /******/ var __webpack_exports__ = __webpack_require__.O();
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[16],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(0)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[17],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(656)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[18],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(647)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
package/lib/runtime.js ADDED
@@ -0,0 +1,174 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ "use strict";
3
+ /******/ var __webpack_modules__ = ({});
4
+ /************************************************************************/
5
+ /******/ // The module cache
6
+ /******/ var __webpack_module_cache__ = {};
7
+ /******/
8
+ /******/ // The require function
9
+ /******/ function __webpack_require__(moduleId) {
10
+ /******/ // Check if module is in cache
11
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
12
+ /******/ if (cachedModule !== undefined) {
13
+ /******/ return cachedModule.exports;
14
+ /******/ }
15
+ /******/ // Create a new module (and put it into the cache)
16
+ /******/ var module = __webpack_module_cache__[moduleId] = {
17
+ /******/ // no module.id needed
18
+ /******/ // no module.loaded needed
19
+ /******/ exports: {}
20
+ /******/ };
21
+ /******/
22
+ /******/ // Execute the module function
23
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
24
+ /******/
25
+ /******/ // Return the exports of the module
26
+ /******/ return module.exports;
27
+ /******/ }
28
+ /******/
29
+ /******/ // expose the modules object (__webpack_modules__)
30
+ /******/ __webpack_require__.m = __webpack_modules__;
31
+ /******/
32
+ /************************************************************************/
33
+ /******/ /* webpack/runtime/chunk loaded */
34
+ /******/ (() => {
35
+ /******/ var deferred = [];
36
+ /******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
37
+ /******/ if(chunkIds) {
38
+ /******/ priority = priority || 0;
39
+ /******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
40
+ /******/ deferred[i] = [chunkIds, fn, priority];
41
+ /******/ return;
42
+ /******/ }
43
+ /******/ var notFulfilled = Infinity;
44
+ /******/ for (var i = 0; i < deferred.length; i++) {
45
+ /******/ var [chunkIds, fn, priority] = deferred[i];
46
+ /******/ var fulfilled = true;
47
+ /******/ for (var j = 0; j < chunkIds.length; j++) {
48
+ /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {
49
+ /******/ chunkIds.splice(j--, 1);
50
+ /******/ } else {
51
+ /******/ fulfilled = false;
52
+ /******/ if(priority < notFulfilled) notFulfilled = priority;
53
+ /******/ }
54
+ /******/ }
55
+ /******/ if(fulfilled) {
56
+ /******/ deferred.splice(i--, 1)
57
+ /******/ var r = fn();
58
+ /******/ if (r !== undefined) result = r;
59
+ /******/ }
60
+ /******/ }
61
+ /******/ return result;
62
+ /******/ };
63
+ /******/ })();
64
+ /******/
65
+ /******/ /* webpack/runtime/compat get default export */
66
+ /******/ (() => {
67
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
68
+ /******/ __webpack_require__.n = (module) => {
69
+ /******/ var getter = module && module.__esModule ?
70
+ /******/ () => (module['default']) :
71
+ /******/ () => (module);
72
+ /******/ __webpack_require__.d(getter, { a: getter });
73
+ /******/ return getter;
74
+ /******/ };
75
+ /******/ })();
76
+ /******/
77
+ /******/ /* webpack/runtime/define property getters */
78
+ /******/ (() => {
79
+ /******/ // define getter functions for harmony exports
80
+ /******/ __webpack_require__.d = (exports, definition) => {
81
+ /******/ for(var key in definition) {
82
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
83
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
84
+ /******/ }
85
+ /******/ }
86
+ /******/ };
87
+ /******/ })();
88
+ /******/
89
+ /******/ /* webpack/runtime/global */
90
+ /******/ (() => {
91
+ /******/ __webpack_require__.g = (function() {
92
+ /******/ if (typeof globalThis === 'object') return globalThis;
93
+ /******/ try {
94
+ /******/ return this || new Function('return this')();
95
+ /******/ } catch (e) {
96
+ /******/ if (typeof window === 'object') return window;
97
+ /******/ }
98
+ /******/ })();
99
+ /******/ })();
100
+ /******/
101
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
102
+ /******/ (() => {
103
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
104
+ /******/ })();
105
+ /******/
106
+ /******/ /* webpack/runtime/make namespace object */
107
+ /******/ (() => {
108
+ /******/ // define __esModule on exports
109
+ /******/ __webpack_require__.r = (exports) => {
110
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
111
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
112
+ /******/ }
113
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
114
+ /******/ };
115
+ /******/ })();
116
+ /******/
117
+ /******/ /* webpack/runtime/jsonp chunk loading */
118
+ /******/ (() => {
119
+ /******/ // no baseURI
120
+ /******/
121
+ /******/ // object to store loaded and loading chunks
122
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
123
+ /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
124
+ /******/ var installedChunks = {
125
+ /******/ 19: 0
126
+ /******/ };
127
+ /******/
128
+ /******/ // no chunk on demand loading
129
+ /******/
130
+ /******/ // no prefetching
131
+ /******/
132
+ /******/ // no preloaded
133
+ /******/
134
+ /******/ // no HMR
135
+ /******/
136
+ /******/ // no HMR manifest
137
+ /******/
138
+ /******/ __webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);
139
+ /******/
140
+ /******/ // install a JSONP callback for chunk loading
141
+ /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
142
+ /******/ var [chunkIds, moreModules, runtime] = data;
143
+ /******/ // add "moreModules" to the modules object,
144
+ /******/ // then flag all "chunkIds" as loaded and fire callback
145
+ /******/ var moduleId, chunkId, i = 0;
146
+ /******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
147
+ /******/ for(moduleId in moreModules) {
148
+ /******/ if(__webpack_require__.o(moreModules, moduleId)) {
149
+ /******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
150
+ /******/ }
151
+ /******/ }
152
+ /******/ if(runtime) var result = runtime(__webpack_require__);
153
+ /******/ }
154
+ /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
155
+ /******/ for(;i < chunkIds.length; i++) {
156
+ /******/ chunkId = chunkIds[i];
157
+ /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
158
+ /******/ installedChunks[chunkId][0]();
159
+ /******/ }
160
+ /******/ installedChunks[chunkIds[i]] = 0;
161
+ /******/ }
162
+ /******/ return __webpack_require__.O(result);
163
+ /******/ }
164
+ /******/
165
+ /******/ var chunkLoadingGlobal = self["webpackChunkspyne"] = self["webpackChunkspyne"] || [];
166
+ /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
167
+ /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
168
+ /******/ })();
169
+ /******/
170
+ /************************************************************************/
171
+ /******/
172
+ /******/
173
+ /******/ })()
174
+ ;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[20],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(657)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[21],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(588)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ (function webpackUniversalModuleDefinition(root, factory) {
3
+ if(typeof exports === 'object' && typeof module === 'object')
4
+ module.exports = factory();
5
+ else if(typeof define === 'function' && define.amd)
6
+ define("spyne", [], factory);
7
+ else if(typeof exports === 'object')
8
+ exports["spyne"] = factory();
9
+ else
10
+ root["spyne"] = factory();
11
+ })(self, function() {
12
+ return (self["webpackChunkspyne"] = self["webpackChunkspyne"] || []).push([[22],{},
13
+ /******/ __webpack_require__ => { // webpackRuntimeModules
14
+ /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
15
+ /******/ __webpack_require__.O(0, [11], () => (__webpack_exec__(628)));
16
+ /******/ var __webpack_exports__ = __webpack_require__.O();
17
+ /******/ return __webpack_exports__;
18
+ /******/ }
19
+ ]);
20
+ });