pax_global_header00006660000000000000000000000064130361205620014510gustar00rootroot0000000000000052 comment=1d7405196df8b823d475868c63132cfd65de9aaf time-zone-1.0.0/000077500000000000000000000000001303612056200134155ustar00rootroot00000000000000time-zone-1.0.0/.editorconfig000066400000000000000000000002761303612056200160770ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [{package.json,*.yml}] indent_style = space indent_size = 2 time-zone-1.0.0/.gitattributes000066400000000000000000000000351303612056200163060ustar00rootroot00000000000000* text=auto *.js text eol=lf time-zone-1.0.0/.gitignore000066400000000000000000000000151303612056200154010ustar00rootroot00000000000000node_modules time-zone-1.0.0/.travis.yml000066400000000000000000000000671303612056200155310ustar00rootroot00000000000000sudo: false language: node_js node_js: - '6' - '4' time-zone-1.0.0/index.js000066400000000000000000000005271303612056200150660ustar00rootroot00000000000000'use strict'; module.exports = date => { const offset = (date || new Date()).getTimezoneOffset(); const absOffset = Math.abs(offset); const hours = Math.floor(absOffset / 60); const minutes = absOffset % 60; const minutesOut = minutes > 0 ? ':' + ('0' + minutes).slice(-2) : ''; return (offset < 0 ? '+' : '-') + hours + minutesOut; }; time-zone-1.0.0/license000066400000000000000000000021371303612056200147650ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. time-zone-1.0.0/package.json000066400000000000000000000010771303612056200157100ustar00rootroot00000000000000{ "name": "time-zone", "version": "1.0.0", "description": "Pretty time zone: `+2` or `-9:30`", "license": "MIT", "repository": "sindresorhus/time-zone", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "engines": { "node": ">=4" }, "scripts": { "test": "xo && ava" }, "files": [ "index.js" ], "keywords": [ "timezone", "utc", "time", "pretty", "human", "date", "iso", "zone" ], "devDependencies": { "ava": "*", "xo": "*" } } time-zone-1.0.0/readme.md000066400000000000000000000012721303612056200151760ustar00rootroot00000000000000# time-zone [![Build Status](https://travis-ci.org/sindresorhus/time-zone.svg?branch=master)](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`
Default: `new Date()` Custom date. ## License MIT © [Sindre Sorhus](https://sindresorhus.com) time-zone-1.0.0/test.js000066400000000000000000000001751303612056200147350ustar00rootroot00000000000000import test from 'ava'; import m from './'; test(t => { console.log('Time zone:', m()); t.regex(m(), /^[+-][\d:]+$/); });