Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 809 Bytes

File metadata and controls

20 lines (15 loc) · 809 Bytes

Changelog

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.

[0.1.7] - 2022-09-16

https://github.com/Rescla/range-ts/releases/tag/v0.1.7 Fixes/improvements related to #23

Added

  • Testcases that use Dates

Changed

  • 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.

Fixed

  • Use valueOf() when checking endpoints in NumberRange
    • Dates caused issues, since Date(0) !== Date(0), but Date(0).valueOf() === Date(0).valueOf()