mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
import DateBase from './-date-base';
|
|
import { isBefore } from 'date-fns';
|
|
|
|
export default DateBase.extend({
|
|
compute: function([date1, date2]) {
|
|
this._super(...arguments);
|
|
|
|
return isBefore(date1, date2);
|
|
},
|
|
});
|