Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

timezone-names

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timezone-names

A simple library to get timezone offsets by names

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Dependency Status devDependency Status

timezone-names

A simple library to get timezone offsets. Functions accept timezone names. Abbreviations are not supported because same abbreviation is used for multiple timezones.

Functions

getTimezoneByName

Get timezone info object.

 
 var tz = require("timezone-names");
 
 tz.getTimezoneByName('Pacific Standard Time');  
 // Returns   
 { 
   Abbreviation: 'PST',  //Abbreviation for the timezone
   Name: 'Pacific Standard Time',  //Standard Name
   DisplayName: 'Pacific Standard Time(UTC - 8)',  //Display String 
   Offset: '-8 hours' //Offset string
}

getTimezoneOffsetByName

Get timezone offset.

 
 tz.getTimezoneOffsetByName('Pacific Standard Time');  
 // Returns   
 { 
  Offset: '-8 hours', //Offset String
  Hours: -8, //Hours component
  Minutes: 0, //Minutes Component
  TotalMinutesOffset: -480  //Total Offset in Minutes
 }


getAll

Get all timezones objects.

 
 tz.getAll();  
 // Returns  Array of timezone objects 
 [
 { 
   Abbreviation: 'PST',  //Abbreviation for the timezone
   Name: 'Pacific Standard Time',  //Standard Name
   DisplayName: 'Pacific Standard Time(UTC - 8)',  //Display String 
   Offset: '-8 hours' //Offset string
 },
 .
 .
 ]


Keywords

FAQs

Package last updated on 13 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc