You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
366 B
9 lines
366 B
import assertString from './util/assertString'; |
|
import toDate from './toDate'; |
|
export default function isAfter(str) { |
|
var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : String(new Date()); |
|
assertString(str); |
|
var comparison = toDate(date); |
|
var original = toDate(str); |
|
return !!(original && comparison && original > comparison); |
|
} |