UNPKG

node-semvers

Version:

Utilities for managing versions of node including looking up codenames

6 lines (5 loc) 154 B
export default function isLatestFn(now) { return function isLatest(item) { return !item.lts && now >= item.start && now <= item.end; }; }