Sha256: 57b85b1292d5d3f0f337b26143bd0dfc2bb1d11a5ffa13cf79bfe960d9f90e84
Contents?: true
Size: 383 Bytes
Versions: 103
Compression:
Stored size: 383 Bytes
Contents
const atomeTime = { schedule: function (years, months, days, hours, minutes, seconds, atome, proc) { const now = new Date(); const formatDate = new Date(years, months - 1, days, hours, minutes, seconds); const diffTime = Math.abs(formatDate - now); setTimeout(function () { atome.$schedule_callback(proc); }, diffTime); } }
Version data entries
103 entries across 103 versions & 1 rubygems