Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
afeiship committed Nov 25, 2020
1 parent 233ce50 commit 4b23d25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* name: @jswork/next-time-format
* description: Time format for next.
* homepage: https://github.com/afeiship/next-time-format
* version: 1.0.0
* date: 2020-11-25 15:25:29
* version: 1.0.1
* date: 2020-11-25 15:27:21
* license: MIT
*/

Expand Down
4 changes: 2 additions & 2 deletions dist/index.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* name: @jswork/next-time-format
* description: Time format for next.
* homepage: https://github.com/afeiship/next-time-format
* version: 1.0.0
* date: 2020-11-25 15:25:29
* version: 1.0.1
* date: 2020-11-25 15:27:21
* license: MIT
*/
!function(){function r(e){return(""+e).padStart(2,"0")}var e=(this||window||Function("return this")()).nx||require("@jswork/next");e.timeFormat=function(e){var t=parseInt(e%1e3),o=Math.floor(e/1e3%60),n=Math.floor(e/6e4%60),e=Math.floor(e/36e5);return{hour:e,minute:n,second:o,millisecond:t,datetime:[r(e),r(n),r(o)].join(":")}},"undefined"!=typeof module&&module.exports&&(module.exports=e.timeFormat)}();
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jswork/next-time-format",
"version": "1.0.0",
"version": "1.0.1",
"description": "Time format for next.",
"homepage": "https://github.com/afeiship/next-time-format",
"author": {
Expand Down Expand Up @@ -47,4 +47,4 @@
"minute",
"second"
]
}
}

0 comments on commit 4b23d25

Please sign in to comment.