StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/time-stamp
Angelos Chatzimparmpas f521a3509d paper-version 4 years ago
..
LICENSE paper-version 4 years ago
README.md paper-version 4 years ago
index.js paper-version 4 years ago
package.json paper-version 4 years ago

README.md

time-stamp NPM version NPM monthly downloads NPM total downloads Linux Build Status

Get a formatted timestamp.

Install

Install with npm:

$ npm install --save time-stamp

Usage

var timestamp = require('time-stamp');

timestamp();
//=> 2017:05:14

timestamp('YYYYMMDD');
//=> 20170514

timestamp('YYYYMMDD:ss');
//=> 20170514:26

timestamp('YYYY/MM/DD:mm:ss');
//=> 2017/05/14:52:26

timestamp('YYYY:MM:DD');
//=> 2017:05:14

timestamp('[YYYY:MM:DD]');
//=> [2017:05:14]

timestamp('YYYY/MM/DD');
//=> 2017/05/14

timestamp('YYYY:MM');
//=> 2017:05

timestamp('YYYY');
//=> 2017

timestamp('MM');
//=> 05

timestamp('DD');
//=> 14

timestamp('HH');
//=> 20

timestamp('mm');
//=> 52

timestamp('ss');
//=> 26

timestamp('ms');
//=> 481

Valid patterns

  • YYYY: full year (ex: 2017)
  • MM: month (ex: 04)
  • DD: day (ex: 01)
  • HH: hours (ex: 12)
  • mm: minutes (ex: 59)
  • ss: seconds (ex: 09)
  • ms: milliseconds (ex: 532)

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

Commits Contributor
21 jonschlinkert
1 evocateur
1 mendenhallmagic

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on May 14, 2017.