erictgrubaugh
03/30/2017, 2:54 PMvar getCurrentDate = function(asOfDate) {
var dateStr = format.format({
"value": (asOfDate || new Date()),
"type": format.Type.DATE
});
return format.parse({
"value": dateStr,
"type": format.Type.DATE,
"timezone": format.Timezone.AMERICA_NEW_YORK
});
};