From ec529d807a82aa6880658fed6b6b59696393202d Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 23 Oct 2015 02:15:23 -0700 Subject: [PATCH] call, not apply... duh --- bower_components/unibabel/unibabel.base32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower_components/unibabel/unibabel.base32.js b/bower_components/unibabel/unibabel.base32.js index c0f4c8f..219f815 100644 --- a/bower_components/unibabel/unibabel.base32.js +++ b/bower_components/unibabel/unibabel.base32.js @@ -135,7 +135,7 @@ exports.base32ToBuffer = function(encoded) { return decoded.slice(0, plainPos); } else { // Mobile Safari's Uint8Array doesn't have slice - return Array.prototype.slice.apply(decoded, 0, plainPos); + return Array.prototype.slice.call(decoded, 0, plainPos); } };