mount-observer 0.0.104 → 0.0.105

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mount-observer",
3
- "version": "0.0.104",
3
+ "version": "0.0.105",
4
4
  "description": "Observe and act on css matches.",
5
5
  "main": "MountObserver.js",
6
6
  "module": "MountObserver.js",
@@ -40,7 +40,7 @@ Object.defineProperty(Element.prototype, 'itemprops', {
40
40
  };
41
41
  proxies.set(this, new Proxy(this, handler));
42
42
  }
43
- return refLookup.get(this);
43
+ return proxies.get(this);
44
44
  }
45
45
  });
46
46
  class ItempropManager extends EventTarget {
@@ -40,7 +40,7 @@ Object.defineProperty(Element.prototype, 'itemprops', {
40
40
  }
41
41
 
42
42
 
43
- return refLookup.get(this);
43
+ return proxies.get(this);
44
44
  }
45
45
  });
46
46