jsf.js_next_gen 4.0.5-beta.1 → 4.0.5-beta.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.
@@ -3989,7 +3989,6 @@ const AjaxImpl_1 = __webpack_require__(/*! ../impl/AjaxImpl */ "./src/main/types
3989
3989
  const PushImpl_1 = __webpack_require__(/*! ../impl/PushImpl */ "./src/main/typescript/impl/PushImpl.ts");
3990
3990
  const OamSubmit_1 = __webpack_require__(/*! ../myfaces/OamSubmit */ "./src/main/typescript/myfaces/OamSubmit.ts");
3991
3991
  const Const_1 = __webpack_require__(/*! ../impl/core/Const */ "./src/main/typescript/impl/core/Const.ts");
3992
- const mona_dish_1 = __webpack_require__(/*! mona-dish */ "./node_modules/mona-dish/src/main/typescript/index_core.ts");
3993
3992
  //we use modules to get a proper jsdoc and static/map structure in the calls
3994
3993
  //as per spec requirement
3995
3994
  var faces;
@@ -4275,11 +4274,11 @@ var myfaces;
4275
4274
  */
4276
4275
  function reserveNamespace(namespace) {
4277
4276
  let current = window;
4278
- mona_dish_1.Stream.of(...namespace.split("."))
4279
- .each(part => {
4277
+ const namespaces = namespace.split(".");
4278
+ for (const part of namespaces) {
4280
4279
  current[part] = current[part] || {};
4281
4280
  current = current[part];
4282
- });
4281
+ }
4283
4282
  }
4284
4283
  myfaces.reserveNamespace = reserveNamespace;
4285
4284
  /**