Sign in
third-party-mirror
/
hashicorp
/
vault
/
582d46ed083b261003e36565a870f396144c4826
/
.
/
v1.14.5
/
ui
/
app
/
helpers
/
now.js
blob: 15b4687172d030b3bb51049115b3c6b4e95a1077 [
file
] [
log
] [
blame
]
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import
DateBase
from
'./-date-base'
;
export
default
DateBase
.
extend
({
compute
()
{
this
.
_super
(...
arguments
);
return
Date
.
now
();
},
});