From 3ba997e8368c31dcffd9619bf3ecfdca9cf945fa Mon Sep 17 00:00:00 2001 From: Vishnuvardhan Reddy Y <57440309+vishnuangular1989@users.noreply.github.com> Date: Mon, 9 Jan 2023 10:51:31 +0530 Subject: [PATCH] Fix for ReferenceError: output is not defined Fix for Uncaught ReferenceError: output is not defined at $P.toString (core-prototypes.js:760:1) --- src/core/core-prototypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core-prototypes.js b/src/core/core-prototypes.js index 46b41fb2..a431afbd 100644 --- a/src/core/core-prototypes.js +++ b/src/core/core-prototypes.js @@ -753,7 +753,7 @@ }; }; $P.toString = function (format, ignoreStandards) { - + var output; // Standard Date and Time Format Strings. Formats pulled from CultureInfo file and // may vary by culture. if (!ignoreStandards && format && format.length === 1) {