
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
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 21 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.