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

timezone-abbreviations

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timezone-abbreviations - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

2

package.json
{
"name": "timezone-abbreviations",
"version": "1.1.1",
"version": "1.1.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -18,4 +18,10 @@ # Timezone Abbreviations

"timezone",
timezones.filter((item) => item.abbr === "AEST")
...timezones.filter((item) => item.abbr === "AEST")
);
// output: {
// abbr: 'AEST',
// description: 'Australian Eastern Standard Time',
// offset: 'UTC+10'
// }
```

@@ -22,0 +28,0 @@

@@ -1,2 +0,3 @@

import * as timezones from "./data.json";
import timezones from "./data.json";
interface TimeZone {

@@ -7,2 +8,3 @@ abbr: string;

}
export default timezones as TimeZone[];

@@ -1,3 +0,5 @@

import program from "./index";
import timezones from "./index";
console.log("program", program);
console.log("timezones", timezones);
console.log("timezones", ...timezones.filter((item) => item.abbr === "AEST"));
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