Files
shields/services/nexus/nexus-version.js
Paul Melnikow bedba47d77 Move legacy services from server.js into services/ (#1958)
This builds on the work of #1931 by moving the legacy services into `services/`.
2018-08-27 13:29:54 -04:00

11 lines
180 B
JavaScript

'use strict'
function isSnapshotVersion(version) {
const pattern = /(\d+\.)*\d-SNAPSHOT/
return version && version.match(pattern)
}
module.exports = {
isSnapshotVersion,
}