reisarod's picture
Upload folder using huggingface_hub
5fae594 verified
raw
history blame contribute delete
321 Bytes
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)
});
});