@toreda/time
Version:
Simple, small footprint library for common time operations and converting between units of time.
24 lines (23 loc) • 448 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Defaults = void 0;
class Defaults {
}
exports.Defaults = Defaults;
Defaults.Math = {
Precision: {
Base: 10,
Seconds: 10,
Minutes: 10,
Days: 10,
Hours: 10,
Months: 10,
Weeks: 10,
Years: 10,
Microseconds: 10,
Milliseconds: 10
}
};
Defaults.Timer = {
CheckIntervalMs: 50
};