https://github.com/nodejs/Release recently marked Node 12 as an active LTS, so I figure I'd flag that in here while I was poking around.
These should be the bounds specified for the date (converted for convenience):
I wasn't quite clear on the rules on what's set for Node 10 as I think that's off by a month, because the month parameter in the Date constructor is zero-based 😱:
I think that second date should be new Date(2020, 3, 31) (to indicate the end of April), rather than the end of May, but let me know if there's some context I'm missing.
https://github.com/nodejs/Release recently marked Node 12 as an active LTS, so I figure I'd flag that in here while I was poking around.
These should be the bounds specified for the date (converted for convenience):
I wasn't quite clear on the rules on what's set for Node 10 as I think that's off by a month, because the
month
parameter in theDate
constructor is zero-based 😱:I think that second date should be
new Date(2020, 3, 31)
(to indicate the end of April), rather than the end of May, but let me know if there's some context I'm missing.