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

airport-timezone

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

airport-timezone

A json object containing airport codes, timezones and offsets

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

airport-timezone

A list of all the airports and their timezone information including gmt/dst offsets

Data sourced from https://github.com/opentraveldata/opentraveldata/blob/master/opentraveldata/optd_por_public.csv

If the data in this repo is out of date then clone it and run npm run update. Please consider creating a pull request with any updates.

Usage

Find timezone information for JFK:

var airportTimezone = require('airport-timezone');
var jfk = airportTimezone.filter(function(airport){
  return airport.code === 'JFK';
})[0];

Returns:

{
  code: 'JFK',
  timezone: 'America/New_York',
  offset: { gmt: -5, dst: -4 }
}

Keywords

FAQs

Package last updated on 13 Apr 2024

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