How to use the date-format.asString function in date-format

To help you get started, we’ve selected a few date-format examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rddill-IBM / ZeroToBlockchain / Chapter11 / controller / restapi / router.js View on Github external
router.use(function(req, res, next) {
    count++;
    console.log('['+count+'] at: '+format.asString('hh:mm:ss.SSS', new Date())+' Url is: ' + req.url);
    next(); // make sure we go to the next routes and don't stop here
});
github rddill-IBM / ZeroToBlockchain / Chapter13 / controller / restapi / router.js View on Github external
router.use(function(req, res, next) {
    count++;
    console.log('['+count+'] at: '+format.asString('hh:mm:ss.SSS', new Date())+' Url is: ' + req.url);
    next(); // make sure we go to the next routes and don't stop here
});
github rddill-IBM / ZeroToBlockchain / Chapter06 / controller / restapi / router.js View on Github external
router.use(function(req, res, next) {
    count++;
    console.log('['+count+'] at: '+format.asString('hh:mm:ss.SSS', new Date())+' Url is: ' + req.url);
    next(); // make sure we go to the next routes and don't stop here
});
github rddill-IBM / ZeroToBlockchain / Chapter12 / controller / restapi / router.js View on Github external
router.use(function(req, res, next) {
    count++;
    console.log('['+count+'] at: '+format.asString('hh:mm:ss.SSS', new Date())+' Url is: ' + req.url);
    next(); // make sure we go to the next routes and don't stop here
});
github publiclab / Leaflet.DistortableImage / node_modules / log4js / lib / layouts.js View on Github external
let format = dateFormat.ISO8601_FORMAT;
    if (specifier) {
      format = specifier;
      // Pick up special cases
      if (format === 'ISO8601') {
        format = dateFormat.ISO8601_FORMAT;
      } else if (format === 'ISO8601_WITH_TZ_OFFSET') {
        format = dateFormat.ISO8601_WITH_TZ_OFFSET_FORMAT;
      } else if (format === 'ABSOLUTE') {
        format = dateFormat.ABSOLUTETIME_FORMAT;
      } else if (format === 'DATE') {
        format = dateFormat.DATETIME_FORMAT;
      }
    }
    // Format the date
    return dateFormat.asString(format, loggingEvent.startTime);
  }
github log4js-node / log4js-node / lib / layouts.js View on Github external
let format = dateFormat.ISO8601_FORMAT;
    if (specifier) {
      format = specifier;
      // Pick up special cases
      if (format === 'ISO8601') {
        format = dateFormat.ISO8601_FORMAT;
      } else if (format === 'ISO8601_WITH_TZ_OFFSET') {
        format = dateFormat.ISO8601_WITH_TZ_OFFSET_FORMAT;
      } else if (format === 'ABSOLUTE') {
        format = dateFormat.ABSOLUTETIME_FORMAT;
      } else if (format === 'DATE') {
        format = dateFormat.DATETIME_FORMAT;
      }
    }
    // Format the date
    return dateFormat.asString(format, loggingEvent.startTime);
  }
github icyflame / terminal-wallet / file-module.js View on Github external
function writeExpense (expenseObjectParam) {
  var xdgBasedir = require('xdg-basedir');
  var expensesFilepath = xdgBasedir.data + '/wallet/expenses.csv';
  var fs = require('fs');
  var logSymbols = require('log-symbols');
  var prettyDate = require('date-format').asString('yyyy-MM-dd', new Date());

  var record = [
    prettyDate,
    expenseObjectParam.reason,
    expenseObjectParam.category,
    expenseObjectParam.credit,
    expenseObjectParam.debit
  ].join(delimiter);

  fs.appendFile(expensesFilepath, record + '\n', function (err) {
    if (err) {
      throw (err);
    } else {
      console.log('\n' + logSymbols.success + ' Expense written to file!' + '\n');
    }
  });
github unageanu / jiji2 / sites / src / js / viewmodel / utils / date-formatter.js View on Github external
static format(date, format="yyyy-MM-dd hh:mm:ss") {
    if (!date) return "-";
    return DateFormat.asString(format, date);
  }
github Weibozzz / next-blog / until / index.js View on Github external
export const formatTime = (time,type) => {
  let zh = ["日", "一", "二", "三", "四", "五", "六"];
  let date = new Date(time * 1000);
  let oneWeekTime = 7 * 24 * 60 * 60 * 1000;
  let result = type === 'mm-dd' ? format.asString('MM-dd', date) :format.asString('yyyy-MM-dd hh:mm', date) + ' 星期' + zh[date.getDay()]
  return Date.now() - date>=oneWeekTime ?
    result
    :
    timeago().format(date)
}
export const getArticleInfo = detailArr => {
github log4js-node / log4js-node / lib / layouts.js View on Github external
function startTime(loggingEvent) {
    return dateFormat.asString('hh:mm:ss', loggingEvent.startTime);
  }

date-format

Formatting Date objects as strings since 2013

MIT
Latest version published 2 years ago

Package Health Score

71 / 100
Full package analysis