Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
timezone-java
Advanced tools
Converter between java.util.TimeZone strings and moment-timezone and vice versa
Converter between java.util.TimeZone strings and moment-timezone and vice versa
toTimezone(timezone, [customTzMap])
convert java.util.TimeZone to moment-timezone
parameter | type | description |
---|---|---|
timezone | string | java.util.TimeZone id |
[customTzMap] | object | custom timezone map |
const {toTimezone} = require('timezone-java')
toTimezone('AET') // > 'Australia/Sydney'
// with custom map
const javaToMomentMap = { 'Etc/GMT+6': 'Asia/Tomsk' }
toTimezone('Etc/GMT+6', javaTzMap) // > 'Asia/Tomsk'
toJava(timezone, [customTzMap])
convert moment-timezone to java.util.TimeZone id
parameter | type | description |
---|---|---|
timezone | string | moment-timezone |
[customTzMap] | object | custom timezone map |
const {toJava} = require('timezone-java')
toJava('Asia/Tomsk') // > 'Etc/GMT+7'
// with custom map
const momentToJavaMap = { 'Asia/Tomsk': 'Etc/GMT+6' }
toJava('Asia/Tomsk', momentToJavaMap) // > 'Etc/GMT+6'
$ npm install timezone-java
$ npm test
Unlicense https://unlicense.org
FAQs
Converter between java.util.TimeZone strings and moment-timezone and vice versa
The npm package timezone-java receives a total of 138 weekly downloads. As such, timezone-java popularity was classified as not popular.
We found that timezone-java demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.