Skip to content
Snippets Groups Projects
Commit 3f3f2faa authored by Leo Balter's avatar Leo Balter
Browse files

whitespace

parent b6664ca2
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ var BigIntTypedArrayConstructors = [ ...@@ -17,7 +17,7 @@ var BigIntTypedArrayConstructors = [
* The %TypedArray% intrinsic constructor function. * The %TypedArray% intrinsic constructor function.
*/ */
var TypedArray = Object.getPrototypeOf(Int8Array); var TypedArray = Object.getPrototypeOf(Int8Array);
function convertToBigInt(x) { function convertToBigInt(x) {
return (Array.isArray(x)) ? x.map(convertToBigInt) : BigInt(x); return (Array.isArray(x)) ? x.map(convertToBigInt) : BigInt(x);
} }
...@@ -74,4 +74,3 @@ function testBigIntTypedArrayConversions(byteConversionValues, fn) { ...@@ -74,4 +74,3 @@ function testBigIntTypedArrayConversions(byteConversionValues, fn) {
}); });
}); });
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment