From 77f9e6d525edcb90f750378d633163dd9a137e55 Mon Sep 17 00:00:00 2001 From: Sam Sneed <163201376+sam-sneed@users.noreply.github.com> Date: Tue, 28 May 2024 19:52:48 +0000 Subject: [PATCH] Update jspp.js --- jspp.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jspp.js b/jspp.js index b5a154e..d26ef8c 100644 --- a/jspp.js +++ b/jspp.js @@ -24,8 +24,8 @@ class JSPlusPlus { } } - // Constructor Extras BEGIN - enableJSConstructorExtras() { + // Constructor Helpers BEGIN + enableJSConstructorHelpers() { Date.prototype.toUSADateString = function() { let day = this.getDate().toString().padStart(2, '0'); let month = (this.getMonth() + 1).toString().padStart(2, '0'); @@ -255,7 +255,7 @@ class JSPlusPlus { }; console.log("Javascript Extras Enabled!") } - // Constructor Extras END + // Constructor Helpers END } static Debug = class {