refactor tunes to double quotes

This commit is contained in:
Felix Roos 2022-02-22 00:44:39 +01:00
parent 522005a7ab
commit f6be175af0
2 changed files with 160 additions and 160 deletions

View file

@ -138,10 +138,10 @@ export default (code) => {
return codegen(shifted);
};
function wrapFunction(name, ...arguments) {
function wrapFunction(name, ...args) {
return new CallExpression({
callee: new IdentifierExpression({ name }),
arguments,
arguments: args,
});
}