mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
|
|
||
|
/**
|
||
|
Defines a regex suitable for matching FRESH versions.
|
||
|
@module file-contains.js
|
||
|
*/
|
||
|
|
||
|
(function() {
|
||
|
module.exports = function() {
|
||
|
return RegExp('^(FRESH|FRESCA|JRS)(?:@(\\d+(?:\\.\\d+)?(?:\\.\\d+)?))?$');
|
||
|
};
|
||
|
|
||
|
}).call(this);
|
||
|
|
||
|
//# sourceMappingURL=fresh-version-regex.js.map
|