mvanroon / time-stamp

Get a formatted timestamp. Used in gulp, assemble, generate, update, verb...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Install with yarn:

$ yarn add time-stamp

v3.0.0

Breaking changes

Default pattern was changed from YYYY:MM:DD to YYYY-MM-DD. See jonschlinkert#3 for more details.

Usage

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

timestamp();
//=> 2018-02-27

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

timestamp('YYYYMMDD', new Date(), true);
//=> 20180227

timestamp('YYYYMMDD:ss');
//=> 20180227:38

timestamp('YYYY/MM/DD:mm:ss');
//=> 2018/02/27:03:38

timestamp('YYYY:MM:DD');
//=> 2018:02:27

timestamp('[YYYY:MM:DD]');
//=> [2018:02:27]

timestamp('YYYY/MM/DD');
//=> 2018/02/27

timestamp('YYYY:MM');
//=> 2018:02

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

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

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

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

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

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

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

Valid patterns

  • YYYY: full year (ex: 2018)
  • 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

Related projects

Contributing

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

Contributors

Commits Contributor
31 jonschlinkert
1 evocateur
1 mendenhallmagic
1 leesei

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 © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on February 27, 2018.

About

Get a formatted timestamp. Used in gulp, assemble, generate, update, verb...

License:MIT License


Languages

Language:JavaScript 100.0%