2015-08-05 14:31:22 -04:00
|
|
|
var moment = require('moment-timezone');
|
|
|
|
|
|
|
|
exports.getLocTimeFromUTC = function(utcDtTm) {
|
|
|
|
var localTm = moment.utc(new Date(utcDtTm));
|
|
|
|
localTm = moment(localTm).tz('America/New_York').format('h:mm:ss a');
|
|
|
|
return localTm;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.getLocDateFromUTC = function(utcDtTm) {
|
|
|
|
var localDt = moment.utc(new Date(utcDtTm));
|
|
|
|
localDt = moment(localDt).tz('America/New_York').format('MM-DD-YYYY');
|
|
|
|
return localDt;
|
|
|
|
};
|
2015-08-05 14:46:33 -04:00
|
|
|
|
2015-08-07 11:20:22 -04:00
|
|
|
// This returned undefined, it probably won't work w/out some fancy dependency injection stuff.
|
|
|
|
//exports.getCoreNameFromCoreId = function(db, coreId) {
|
|
|
|
//db.all('SELECT coreName FROM Cores WHERE coreId = ? LIMIT 1;', coreId, function(err, rows){
|
|
|
|
//if (err !== null) {
|
|
|
|
//console.log(err);
|
|
|
|
//} else {
|
|
|
|
//return rows.coreName;
|
|
|
|
//}
|
|
|
|
//}
|
|
|
|
//);
|
|
|
|
//};
|