UNPKG
runtime-eol
Version:
latest (1.2.5)
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
check runtime versions
gitlab.com/tomanwalker/runtime-eol
runtime-eol
/
test
/
test_compare.ts
10 lines
(5 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ compareVersions }
from
"../helpers/version"
;
const
min =
'3.9'
;
const
current =
'3.10.2'
;
console
.
log
(
'compare ='
, current >= min, current.
localeCompare
(min),
compareVersions
(current, min));
// npx tsx test/test_compare.ts