diff --git a/src/common/utils/date/get-current-date-time.ts b/src/common/utils/date/get-current-date-time.ts new file mode 100644 index 0000000000..bf3df2bd78 --- /dev/null +++ b/src/common/utils/date/get-current-date-time.ts @@ -0,0 +1,7 @@ +/** + * Copyright (c) OpenLens Authors. All rights reserved. + * Licensed under MIT License. See LICENSE in root directory for more information. + */ +import moment from "moment"; + +export const getCurrentDateTime = () => moment().utc().format();