10 lines
197 B
JavaScript
Executable file
10 lines
197 B
JavaScript
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
|
|
}
|
|
}
|