From e98aa5cf5b9823ec14635533afc121344c691ad1 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Mon, 30 Dec 2024 14:13:17 -0800 Subject: [PATCH] Remove src dir --- src/index.ts | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 909bf1e..0000000 --- a/src/index.ts +++ /dev/null @@ -1,26 +0,0 @@ -console.log("Try npm run lint/fix!"); - -const longString = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut aliquet diam.'; - -const trailing = 'Semicolon' - - const why={am:'I tabbed?'}; - -const iWish = "I didn't have a trailing space..."; - -const sicilian = true;; - -const vizzini = (!!sicilian) ? !!!sicilian : sicilian; - -const re = /foo bar/; - -export function doSomeStuff(withThis: string, andThat: string, andThose: string[]) { - //function on one line - if(!Boolean(andThose.length)) {return false;} - console.log(withThis); - console.log(andThat); - console.dir(andThose); - console.log(longString, trailing, why, iWish, vizzini, re); - return; -} -// TODO: more examples