UNPKG

node-semvers

Version:

Utilities for managing versions of node including looking up codenames

6 lines (5 loc) 147 B
export default function isLTSFn(now) { return function isLTS(item) { return item.lts && now >= item.start && now <= item.end; }; }