ES5
This commit is contained in:
parent
9a855266ab
commit
02770b7759
|
@ -1550,7 +1550,7 @@ window.lam.webauthn.authenticate = function(publicKey) {
|
||||||
* @returns base64 string
|
* @returns base64 string
|
||||||
*/
|
*/
|
||||||
window.lam.webauthn.arrayToBase64String = function(input) {
|
window.lam.webauthn.arrayToBase64String = function(input) {
|
||||||
return btoa(String.fromCharCode(...input));
|
return btoa(String.fromCharCode.apply(null, input));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue