Skip to content

Commit

Permalink
upodate
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmandic committed Apr 5, 2023
1 parent 9106794 commit 2077bb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions dist/pilogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ var require_dayjs_min = __commonJS({
this.$d = function(t3) {
var e2 = t3.date, n2 = t3.utc;
if (null === e2)
return new Date(NaN);
return /* @__PURE__ */ new Date(NaN);
if (O.u(e2))
return new Date();
return /* @__PURE__ */ new Date();
if (e2 instanceof Date)
return new Date(e2);
if ("string" == typeof e2 && !/Z$/i.test(e2)) {
Expand Down Expand Up @@ -401,6 +401,7 @@ function assembleStyles() {
}
const integer = Number.parseInt(colorString, 16);
return [
/* eslint-disable no-bitwise */
integer >> 16 & 255,
integer >> 8 & 255,
integer & 255
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"importsNotUsedAsValues": "error",
"isolatedModules": false,
"noEmitHelpers": true,
"noEmitOnError": false,
Expand Down

0 comments on commit 2077bb9

Please sign in to comment.