j-templates 7.0.91 → 7.0.92

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.
@@ -102,11 +102,11 @@ function CreateProxyFactory(alias) {
102
102
  return CreateProxyFromValue(value);
103
103
  }
104
104
  function CreateArrayProxy(value) {
105
- const wrapper = {
105
+ const wrapper = Object.assign([], {
106
106
  [NODE_VALUE]: value,
107
107
  [NODE_PROXY]: null,
108
108
  [ARRAY_SCOPE]: observableScope_1.ObservableScope.Basic(Identity.bind(null, value))
109
- };
109
+ });
110
110
  const proxy = wrapper[NODE_PROXY] = new Proxy(wrapper, {
111
111
  get: ArrayProxyGetter,
112
112
  set: ArrayProxySetter,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "j-templates",
3
- "version": "7.0.91",
3
+ "version": "7.0.92",
4
4
  "description": "j-templates",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/TypesInCode/jTemplates",