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.
shift-timezone-offset
Advanced tools
Converts timezoned dates to local time or any other timezone.
Sometimes it's easier to work in local time, because all JavaScript Date objects are given in local time:
new Date('2017-01-01T00:00:00Z').getHours()
// => 11
It's because my timezone is +11:00, fine, but I would like a 0
!
This library will shift a date to match time in the local timezone, or the one you need, as if the timezone information is ignored.
Working in local time:
// process.env.TZ = 'Pacific/Noumea' // local timezone
var timezoneShift = require('../')
var dateInfo = '2017-01-01T00:00:00+03:00'
var initialDate = new Date(dateInfo)
console.log(initialDate.getHours())
// => 8
console.log(initialDate.getTime() / 1000)
// => 1483218000
var converter = timezoneShift('+03:00') // timezoneShift(dateInfo) works as well
var localDate = converter.toLocal(initialDate)
console.log(localDate.getHours())
// => 0
console.log(localDate.getTime() / 1000)
// => 1483189200
var backToInitialDate = converter.fromLocal(localDate)
console.log(backToInitialDate.getHours())
// => 8
console.log(backToInitialDate.getTime() / 1000)
// => 1483218000
When only one operation is needed, there is a shortcut notation:
var timezoneShift = require('../')
var dateInfo = '2017-01-01T12:00:00+03:00'
console.log(new Date(dateInfo))
// => 2017-01-01T09:00:00.000Z
// 5 hours timezone shift
console.log(timezoneShift.convert(dateInfo, { from: '+03:00', to: '+08:00' }))
// => 2017-01-01T04:00:00.000Z
// to local (all 3 are similar)
// "to" defaults to local timezone:
console.log(timezoneShift.convert(dateInfo, { from: '+03:00' }))
// => 2017-01-01T01:00:00.000Z
// to be sure:
console.log(timezoneShift.convert(dateInfo, { from: '+03:00', to: '+11:00' }))
// => 2017-01-01T01:00:00.000Z
// even simpler ("from" timezone is infered from date string):
console.log(timezoneShift.convert(dateInfo))
// => 2017-01-01T01:00:00.000Z
var timezoneShift = require('timezone-offset')
var converter = timezoneShift(validTimezone)
validTimezone
- valid ISO 8601 date string or timezone string: '+05:00'
, '-1100'
or '2017-01-01T12:00:00+05:00'
. An offset is valid as well: -240
in place of '+04:00
.converter.toLocal(date)
Shift a date considered in the converter timezone to the local timezone. It means the absolute UTC value is affected.
Returns a new Date
object.
date
- any valid value for the Date
constructor.converter.fromLocal(date)
Shift a local date to the timezone. It means the UTC value is affected.
Returns a new Date
object.
date
- any valid value for the Date
constructor.converter.toTimezone(date, zone)
Shift a local date to converter timezone.
Returns a new Date
object.
date
- any valid value for the Date
constructor.zone
- valid ISO 8601 date string or timezone string.converter.offset
Timezone offset from UTC in minutes (similar to Date.prototype.getTimezoneOffset
).
converter.timeShift
The full shift in minutes required to convert the dates to the local timezone.
timezoneShift.convert(date, zones)
date
- any valid value for the Date
object constructor.zone
- object containing initial and final timezones:
zones.from
- valid timezone info. Could be infered if date
is an ISO date string.zones.to
- default: local timezone. Valid timezone info.MIT
npm install shift-timezone-offset
FAQs
Shift timezoned dates to local time or any other timezone.
The npm package shift-timezone-offset receives a total of 0 weekly downloads. As such, shift-timezone-offset popularity was classified as not popular.
We found that shift-timezone-offset 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.