1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

deno2: fmt js dir

This commit is contained in:
Ryan Dahl 2018-06-11 21:32:06 +02:00
parent 314f086721
commit 997b300745
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,6 @@
const globalEval = eval; const globalEval = eval;
const window = globalEval("this"); const window = globalEval("this");
window['foo'] = () => { window["foo"] = () => {
deno_print("Hello world from foo"); deno_print("Hello world from foo");
return "foo"; return "foo";
} };

View file

@ -4,3 +4,4 @@ clang-format -i -style Google *.cc *.h include/*.h
gn format BUILD.gn gn format BUILD.gn
gn format .gn gn format .gn
yapf -i tools/*.py yapf -i tools/*.py
prettier --write js/*.ts js/*.js