tz-format
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/tz-format package

1.1.0 • Public • Published

tz-format Build Status

Format a date with timezone: 2015-11-30T10:40:35+01:00

Install

$ npm install --save tz-format

Usage

const format = require('tz-format');
 
format();
//=> '2015-11-30T10:40:35+01:00'
 
format(0);
//=> '2015-11-30T09:40:35+00:00'
 
format(new Date());
//=> '2015-11-30T10:40:35+01:00'
 
format(new Date(), 0);
//=> '2015-11-30T09:40:35+00:00'
 
format(new Date(2015, 11, 25, 11, 0, 0, 0), -1);
//=> '2015-12-25T09:00:00-01:00'

API

format([date], [offset])

input

Type: date
Default: new Date()

Date to be formatted.

offset

Type: number

Offset from UTC in hours.

License

MIT © Sam Verschueren

Package Sidebar

Install

npm i tz-format

Weekly Downloads

2,449

Version

1.1.0

License

MIT

Last publish

Collaborators

  • samverschueren