11 lines
197 B
JavaScript
Executable File
11 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
|
|
}
|
|
}
|