Momento obtenha o registro de data e hora
moment().unix() // you will get a unix timestamp
moment().valueOf() // you will get a full timestamp
GutoTrosla
moment().unix() // you will get a unix timestamp
moment().valueOf() // you will get a full timestamp
const moment = require('moment');
const timestamp = 1519482900000;
const formatted = moment(timestamp).format('L');
console.log(formatted); // "02/24/2018"
var CurrentDate = moment().valueOf();