mobile safari fix
Esse commit está contido em:
pai
ae560e7803
commit
e39c6956f2
@ -131,7 +131,12 @@ exports.base32ToBuffer = function(encoded) {
|
||||
throw new Error('Invalid input - it is not base32 encoded string');
|
||||
}
|
||||
}
|
||||
return decoded.slice(0, plainPos);
|
||||
if (decoded.slice) {
|
||||
return decoded.slice(0, plainPos);
|
||||
} else {
|
||||
// Mobile Safari's Uint8Array doesn't have slice
|
||||
return Array.prototype.slice.apply(decoded, 0, plainPos);
|
||||
}
|
||||
};
|
||||
|
||||
}(window.Unibabel || window));
|
||||
|
||||
Carregando…
x
Referência em uma nova issue
Block a user