Repository URL to install this package:
|
Version:
0.0.0-dbbf5e9efabe69 ▾
|
const moment = require('moment');
/**
* Convert string date to Unix Epoch time in seconds.
* @param {string} endDate
*/
function convertDateToUTCTimestampInSeconds(endDate) {
const convertedDate = moment(endDate).unix();
return convertedDate;
}
module.exports = { convertDateToUTCTimestampInSeconds };