2019-04-24 09:10:37 -04:00
|
|
|
function randomInt (low: number, high: number) {
|
|
|
|
return Math.floor(Math.random() * (high - low) + low)
|
|
|
|
}
|
|
|
|
|
2019-07-16 05:33:22 -04:00
|
|
|
// Thanks https://stackoverflow.com/a/16187766
|
|
|
|
function compareSemVer (a: string, b: string) {
|
|
|
|
const regExStrip0 = /(\.0+)+$/
|
|
|
|
const segmentsA = a.replace(regExStrip0, '').split('.')
|
|
|
|
const segmentsB = b.replace(regExStrip0, '').split('.')
|
|
|
|
|
|
|
|
const l = Math.min(segmentsA.length, segmentsB.length)
|
|
|
|
|
|
|
|
for (let i = 0; i < l; i++) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const diff = parseInt(segmentsA[i], 10) - parseInt(segmentsB[i], 10)
|
2019-07-16 05:33:22 -04:00
|
|
|
|
|
|
|
if (diff) return diff
|
|
|
|
}
|
|
|
|
|
|
|
|
return segmentsA.length - segmentsB.length
|
|
|
|
}
|
|
|
|
|
2019-07-18 08:28:37 -04:00
|
|
|
function isPromise (value: any) {
|
|
|
|
return value && typeof value.then === 'function'
|
|
|
|
}
|
|
|
|
|
|
|
|
function isCatchable (value: any) {
|
|
|
|
return value && typeof value.catch === 'function'
|
|
|
|
}
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
export {
|
2019-07-16 05:33:22 -04:00
|
|
|
randomInt,
|
2019-07-18 08:28:37 -04:00
|
|
|
compareSemVer,
|
|
|
|
isPromise,
|
|
|
|
isCatchable
|
2019-04-24 09:10:37 -04:00
|
|
|
}
|