From e34d500bf92e73fe5f2e57728122a72bc8423d81 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 17 Dec 2015 08:56:35 -0500 Subject: [PATCH] fixed bad copy/paste, as reported in feedback section of Chrome store --- platform/chromium/vapi-polyfill.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/chromium/vapi-polyfill.js b/platform/chromium/vapi-polyfill.js index f6e280e8a..4fc5687f1 100644 --- a/platform/chromium/vapi-polyfill.js +++ b/platform/chromium/vapi-polyfill.js @@ -122,7 +122,7 @@ if ( typeof self.Map !== 'function' ) { return this._map[k]; }; - self.Set.prototype.has = function(k) { + self.Map.prototype.has = function(k) { return this._map[k] !== undefined; };