aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/core-utils/common/version.ts
blob: 3052872338b1dcd13f8745ff2cc3ca9dd0f9fcae (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                        
                                               

                                      
 
                                                                                                  

 
        
               
 
// Thanks https://gist.github.com/iwill/a83038623ba4fef6abb9efca87ae9ccb
function compareSemVer (a: string, b: string) {
  if (a.startsWith(b + '-')) return -1
  if (b.startsWith(a + '-')) return 1

  return a.localeCompare(b, undefined, { numeric: true, sensitivity: 'case', caseFirst: 'upper' })
}

export {
  compareSemVer
}