LibJS: Fix test files indentation (4 spaces)

This commit is contained in:
Linus Groh 2020-04-13 14:08:27 +01:00 committed by Andreas Kling
commit 92a9fe0e49
Notes: sideshowbarker 2024-07-19 07:37:56 +09:00
8 changed files with 111 additions and 111 deletions

View file

@ -17,7 +17,7 @@ try {
assert(obj.a === 33);
assert(obj.b === 44);
let returnUndefined = () => {};
let returnUndefined = () => { };
assert(typeof returnUndefined() === "undefined");
const makeArray = (a, b) => [a, b];