New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

date-timezone

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

date-timezone

Timezone aware Date objects.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

============= date-timezone

Timezone aware :code:Date objects.

Install

Node

::

npm install date-timezone

Browser

::

git clone https://github.com/BenoitZugmeyer/date-timezone
cd date-timezone
npm install
npm run dist

Then include either dist/date-timezone.js or dist/date-timezone-with-moment.js in your project. If you include the first one, make sure you also include moment-timezone_.

You can always use webpack or browserify to include this in your project.

API

:code:new dateTimezone.DateTimezone(...) Construct a new date with the current global timezone. This constructor and the returned object have the same API as native Date objects_.

:code:dateTimezone.setGlobalTimezone(timezoneName) Set the global timezone to use when building dates with :code:DateTimezone. By default, the global timezone is the current runtime timezone. It supports any timezone name supported by moment-timezone.

Call without argument to reset the global timezone to the runtime timezone.

:code:dateTimezone.patch() Replace the native :code:Date constructor with the :code:DateTimezone constructor. All new dates will respect the global timezone.

:code:dateTimezone.unpatch() Restore the native :code:Date constructor if it has previously been replaced with :code:dateTimezone.patch().

:code:dateTimezone.getNativeDate() Return the native :code:Date constructor, useful when :code:patch() has been called.

Usage example

.. code:: javascript

dateTimezone.setGlobalTimezone("America/New_York");

new Date(2016, 1, 1).toString();
// 'Mon Feb 01 2016 00:00:00 GMT+0100 (CET)' or whatever local timezone you're on.

new dateTimezone.DateTimezone(2016, 1, 1).toString();
// 'Fri Jan 01 2016 00:00:00 GMT-0500 (EST)'

dateTimezone.patch();

new Date(2016, 1, 1).toString();
// 'Fri Jan 01 2016 00:00:00 GMT-0500 (EST)'

.. _moment-timezone: http://momentjs.com/timezone/ .. _native Date objects: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date

FAQs

Package last updated on 23 May 2016

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