From cdb42bc3b1ddadf33f579406e2faee81711152a6 Mon Sep 17 00:00:00 2001 From: Kelley van Evert Date: Thu, 13 Jul 2017 17:29:04 +0200 Subject: [PATCH] Fixed a typo: `object.unobserve` --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 9ede51c..6a0a027 100644 --- a/index.js +++ b/index.js @@ -220,7 +220,7 @@ return proxy; }; Array.unobserve = function(object,callback) { - return object.unobserve(callback); + return Object.unobserve(callback); } } Object.deepObserve = function(object,callback,parts) {