@fileverse-dev/formulajs 4.4.36 → 4.4.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /* @fileverse-dev/formulajs v4.4.36 */
1
+ /* @fileverse-dev/formulajs v4.4.37 */
2
2
  var _excluded = [ "confirmations", "dataDecoded" ];
3
3
 
4
4
  function _objectWithoutProperties(e, t) {
@@ -8362,12 +8362,12 @@ function _typeof(o) {
8362
8362
  var pad = function pad(n) {
8363
8363
  return n.toString().padStart(2, "0");
8364
8364
  };
8365
- var day = pad(date.getDate());
8366
- var month = pad(date.getMonth() + 1);
8367
- var year = date.getFullYear();
8368
- var hours = pad(date.getHours());
8369
- var minutes = pad(date.getMinutes());
8370
- var seconds = pad(date.getSeconds());
8365
+ var day = pad(date.getUTCDate());
8366
+ var month = pad(date.getUTCMonth() + 1);
8367
+ var year = date.getUTCFullYear();
8368
+ var hours = pad(date.getUTCHours());
8369
+ var minutes = pad(date.getUTCMinutes());
8370
+ var seconds = pad(date.getUTCSeconds());
8371
8371
  return {
8372
8372
  day: day,
8373
8373
  month: month,