summaryrefslogtreecommitdiff
path: root/examples/test.js
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-04-11 09:01:33 -0400
committermattkae <mattkae@protonmail.com>2023-04-11 09:01:33 -0400
commit2457625b5afe393dceca3db6214174418702dc66 (patch)
tree365cf85b470b1a8fbfb889a4b0ee1cec75eed236 /examples/test.js
parentc2c1cd810d7bae8c6aa1da76b9cef73301ff631d (diff)
Beginning of a grand adventure into improving startup time
Diffstat (limited to 'examples/test.js')
-rw-r--r--examples/test.js6
1 files changed, 3 insertions, 3 deletions
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) {