All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
https://github.com/Rescla/range-ts/releases/tag/v0.1.7 Fixes/improvements related to #23
- Testcases that use Dates
- Format endpoints in RangeMap.toString() with .toISOString(), if available.
- This is an improvement over Date.toString() for Dates, but using valueOf() instead might be more consistent.
- Use valueOf() when checking endpoints in NumberRange
- Dates caused issues, since Date(0) !== Date(0), but Date(0).valueOf() === Date(0).valueOf()