nv-facutil-clock
Advanced tools
Comparing version 1.0.13 to 1.0.16
15
index.js
@@ -368,2 +368,17 @@ | ||
} | ||
//// | ||
get today_start_() { | ||
let d = this.dict(); | ||
var mts = (d.mts - 1000*3600*d.h - 1000*60*d.min - 1000*d.s - d.ms); | ||
var o = new Manual(mts); | ||
o.zone = this.zone; | ||
return(o); | ||
} | ||
get tomorrow_start_() { | ||
let d = this.dict(); | ||
var mts = (d.mts - 1000*3600*d.h - 1000*60*d.min - 1000*d.s - d.ms + 1000*3600*24); | ||
var o = new Manual(mts); | ||
o.zone = this.zone; | ||
return(o); | ||
} | ||
get fst_yd_() {return(_fst_yd(this))} | ||
@@ -370,0 +385,0 @@ get lst_yd_() {return(_lst_yd(this))} |
{ | ||
"name": "nv-facutil-clock", | ||
"version": "1.0.13", | ||
"version": "1.0.16", | ||
"description": "clock,date,generator,stream,cron", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92119
876