diff options
Diffstat (limited to 'node_modules/time-zone/readme.md')
-rw-r--r-- | node_modules/time-zone/readme.md | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/node_modules/time-zone/readme.md b/node_modules/time-zone/readme.md deleted file mode 100644 index 8b2c67b2d..000000000 --- a/node_modules/time-zone/readme.md +++ /dev/null @@ -1,46 +0,0 @@ -# time-zone [](https://travis-ci.org/sindresorhus/time-zone) - -> Pretty [time zone](https://en.wikipedia.org/wiki/Time_zone): `+2` or `-9:30` - - -## Install - -``` -$ npm install --save time-zone -``` - - -## Usage - -```js -const timeZone = require('time-zone'); - -// current time zone (in Norway) -timeZone(); -//=> '+2' - -// time zone in February (in Norway) -timeZone(new Date(2016, 1, 1)); -//=> '+1' - -// current time zone (in French Polynesia) -timeZone(); -//=> '-9:30' -``` - - -## API - -### timeZone([date]) - -#### date - -Type: `Date`<br> -Default: `new Date()` - -Custom date. - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) |