From 2457625b5afe393dceca3db6214174418702dc66 Mon Sep 17 00:00:00 2001 From: mattkae Date: Tue, 11 Apr 2023 09:01:33 -0400 Subject: Beginning of a grand adventure into improving startup time --- examples/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/test.js') diff --git a/examples/test.js b/examples/test.js index 80c7edc..e011d4e 100644 --- a/examples/test.js +++ b/examples/test.js @@ -5,12 +5,12 @@ @param y {number} The Y input @returns {number} x + y */ -function myFunction(x, y = 10) { +function myFunctionHehe(x, y = 10) { return x + y } -myFunction() -myFunction() +myFunctionHehe() +myFunctionHehe() class MyBigClass { constructor(pValue) { -- cgit v1.2.1