You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromReferenceSeconds:fromReferenceSeconds now throws if the specified count of seconds is not a finite
value. Previously it would return an invalid Time object with the same non-finite value as its
hours, minutes and seconds.
fromReferenceSeconds:time now throws if any of the component parts of the specified time are not
finite values. Previously it would return an invalid Time object with non-finite values as its
hours, minutes and/or seconds.
fromReferenceSeconds:normalize now throws if any of the component parts of the specified time are
not finite values. Previously it would return an invalid Time object with non-finite values as its
hours, minutes and/or seconds.
node: node ^13 || ^15 are no longer supported.
time: The Time type is now immutable.
node 10 is no longer supported. node >=12 is required.
Consumers that previously imported from "@softwareventures/time/time" should now
import from "@softwareventures/time" instead.
date: The date type is no longer included in tis module. Use @softwareventures/date
instead.
This library now uses ES2017 syntax. This breaks compatibility with Node < 8.10 and
very old browsers that do not support ES2017 syntax. If you need to support older browsers, then you
should use Babel to compile ES6+ code down to ES5.