Code Monkey home page Code Monkey logo

timezone_timestamp's Introduction

timezone_timestamp

Set any timezone time to timestamp you want to set.

Intro

tomezone data use timezonedb

Default save data to localstorage 1 day

Expire 1 day and call api and then save to localstorage again

Method

  • response(data)

    • data: timezoneDB response data
  • initData(arg)

    • arg - Object

      • key: timezoneDB api key
      • updateHours: update call timezoneDB time, unit is hour
  • timestamp(zone, ts, dst)

    • zone: timezone you want to set, ex: 'Asia/Taipei'
    • ts: timestamp
    • dst: Daylight Saving Time, if you want to use it, true or false
  • timestampOffset(ts, offset)

    • ts: timestamp
    • offset: timezone offset you want to set
  • countryCode()

Show all support country code

  • zoneName(countryCode)

    • countryCode: response this countryCode timezone

Usage

Need define tzts.response handle initData callback

Must use tzts.initData set call timezone data

var key = '';

tzts.callback = function (data) {
  console.log(data);
  init();
};

tzts.initData({
  key: key,
  updateHours: 24
});

function init() {
  tzts.timestamp('Asia/Tokyo', new Date('2020-01-20 14:00:00').getTime());
  // 1579496400000
  tzts.timestampOffset(new Date('2020-01-20 14:00:00').getTime(), 9);
  // 1579496400000
  tzts.countryCode()
  // ["AD", "AE", "AF", ...]
  tzts.zoneName('tw')
  // ["Asia/Taipei"]
}

timezone_timestamp's People

Contributors

tedshd avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.