- This is the JavaScript library to adjust time.
- You can get the second of delay from standard time.
- It call the NTP JSONP API (written in Japanese) provided by NICT.
- The API is for JST (Japan Standard Time), but available from any time zone all over the world.
- 時刻を合わせるためのJavaScriptライブラリです。
- 標準時からの遅れ(秒数)を取得出来ます。
- NICTが提供するNTP JSONP APIを利用しています。
- NICTのAPIはJST(日本標準時)のために用意されていますが、世界中のすべてのタイムゾーンから利用できます。
var callback = function(result) {
// 'result' is the result of adjusting time
console.log(JSON.stringify(callback));
};
JST.request(callback);
- This is just a namespace.
- This is the callback function that JSONP API calls.
- property
status
… The result string, that is 'success' or 'error'. - property
msg
… The error message. - object
delaySec
- average … The average of multiple requests.
- min … The minimum of multiple requests.
- max … The maximum of multiple requests.