Files
shields/lib/nexus-version.js
Paul Melnikow 5a3516c687 Clean up some helpers (#1117)
Address comments from #1109 and make several code-quality fixes which were caught by a local run of eslint-config-standard.
2017-10-06 13:11:29 -04:00

11 lines
183 B
JavaScript

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