Files
bug-em/node_modules/sntp/examples/offset.js
Talor Berthelson 889faf9c1c lol
2016-06-17 20:49:15 -04:00

17 lines
321 B
JavaScript

var Sntp = require('../lib');
// Request offset once
Sntp.offset(function (err, offset) {
console.log(offset); // New (served fresh)
// Request offset again
Sntp.offset(function (err, offset) {
console.log(offset); // Identical (served from cache)
});
});