Plato on Github
Report Home
node_modules/sntp/examples/offset.js
Maintainability
88.24
Lines of code
15
Difficulty
5.94
Estimated Errors
0.04
Function weight
By Complexity
By SLOC
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) }); });