From 37653545f3822d13a3ac78db2c6f055f9dd65dee Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 15 Oct 2020 20:54:35 -0600 Subject: [PATCH] Cleanp + note --- core/ftn_util.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/ftn_util.js b/core/ftn_util.js index 9a171a52..a788f2c7 100644 --- a/core/ftn_util.js +++ b/core/ftn_util.js @@ -56,7 +56,7 @@ function stringToNullPaddedBuffer(s, bufLen) { // // Convert a FTN style DateTime string to a Date object // -// :TODO: Name the next couple methods better - for FTN *packets* +// :TODO: Name the next couple methods better - for FTN *packets* e.g. parsePacketDateTime() function getDateFromFtnDateTime(dateTime) { // // Examples seen in the wild (Working): @@ -66,7 +66,6 @@ function getDateFromFtnDateTime(dateTime) { // // :TODO: Use moment.js here return moment(Date.parse(dateTime)); // Date.parse() allows funky formats -// return (new Date(Date.parse(dateTime))).toISOString(); } function getDateTimeString(m) {