diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2018-07-09 23:35:40 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-10-05 10:35:09 -0400 |
commit | bad14db8dadac46fef2c1c7094c92831b4bed0fb (patch) | |
tree | ff09731ff595d84772be9a68d36d72b9703cf749 /javascript | |
parent | 8520168e0b4c8172847a051e532ca4deaec46a95 (diff) |
remove unneeded polyfill
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/test/pk.spec.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/javascript/test/pk.spec.js b/javascript/test/pk.spec.js index aec90ac..0b27470 100644 --- a/javascript/test/pk.spec.js +++ b/javascript/test/pk.spec.js @@ -18,14 +18,6 @@ limitations under the License. var Olm = require('../olm'); -if (!Object.keys) { - Object.keys = function(o) { - var k=[], p; - for (p in o) if (Object.prototype.hasOwnProperty.call(o,p)) k.push(p); - return k; - } -} - describe("pk", function() { var encryption, decryption; |