whitespace

This commit is contained in:
Leo Balter 2018-02-15 12:52:26 -05:00
parent b6664ca24a
commit 3f3f2faa8e
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,7 @@ var BigIntTypedArrayConstructors = [
* The %TypedArray% intrinsic constructor function.
*/
var TypedArray = Object.getPrototypeOf(Int8Array);
function convertToBigInt(x) {
return (Array.isArray(x)) ? x.map(convertToBigInt) : BigInt(x);
}
@ -74,4 +74,3 @@ function testBigIntTypedArrayConversions(byteConversionValues, fn) {
});
});
}