aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/console-log.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-22 23:21:48 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-22 23:21:48 -0700
commit729d445b6885f69dd2c6355f38707bd42851c791 (patch)
treef87a7c408929ea3f57bbb7ace380cf869da83c0e /integration/bunjs-only-snippets/console-log.js
parent25f820c6bf1d8ec6d444ef579cc036b8c0607b75 (diff)
downloadbun-729d445b6885f69dd2c6355f38707bd42851c791.tar.gz
bun-729d445b6885f69dd2c6355f38707bd42851c791.tar.zst
bun-729d445b6885f69dd2c6355f38707bd42851c791.zip
change the directory structurejarred/rename
Diffstat (limited to 'integration/bunjs-only-snippets/console-log.js')
-rw-r--r--integration/bunjs-only-snippets/console-log.js58
1 files changed, 0 insertions, 58 deletions
diff --git a/integration/bunjs-only-snippets/console-log.js b/integration/bunjs-only-snippets/console-log.js
deleted file mode 100644
index e8aa200ac..000000000
--- a/integration/bunjs-only-snippets/console-log.js
+++ /dev/null
@@ -1,58 +0,0 @@
-console.log("Hello World!");
-console.log(123);
-console.log(-123);
-console.log(123.567);
-console.log(-123.567);
-console.log(true);
-console.log(false);
-console.log(null);
-console.log(undefined);
-console.log(Symbol("Symbol Description"));
-console.log(new Date(2021, 12, 30, 666, 777, 888, 999));
-console.log([123, 456, 789]);
-console.log({ a: 123, b: 456, c: 789 });
-console.log({
- a: {
- b: {
- c: 123,
- },
- bacon: true,
- },
-});
-
-console.log(new Promise(() => {}));
-
-class Foo {}
-
-console.log(() => {});
-console.log(Foo);
-console.log(new Foo());
-console.log(function foooo() {});
-
-console.log(/FooRegex/);
-
-console.error("uh oh");
-console.time("Check");
-
-console.log(
- "Is it a bug or a feature that formatting numbers like %d is colored",
- 123
-);
-console.log(globalThis);
-
-console.log(
- "String %s should be 2nd word, 456 == %s and percent s %s == %s",
- "123",
- "456",
- "%s",
- "What",
- "okay"
-);
-
-const infinteLoop = {
- foo: {},
- bar: {},
-};
-
-infinteLoop.bar = infinteLoop;
-console.log(infinteLoop, "am");