mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 06:49:29 +08:00
10 lines
197 B
Text
Executable file
10 lines
197 B
Text
Executable file
'use strict'
|
|
module.exports = value => {
|
|
const date = new Date(value)
|
|
/* istanbul ignore if */
|
|
if (isNaN(date)) {
|
|
throw new TypeError('Invalid Datetime')
|
|
} else {
|
|
return date
|
|
}
|
|
}
|