Last active
March 10, 2021 17:57
-
-
Save sebringj/0d7ac14fab55bd5bc31f3dfd6c81e01b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function versionToNumber(version) { | |
return version | |
.split('.') | |
.reverse() | |
.map((v, i) => parseInt(v, 10) * Math.pow(1000, i)) | |
.reduce((a, v) => a + v); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This allows you to compare software versions easily like