django-modeltranslation/pkg-info-updater.js
2020-04-22 18:04:01 +03:00

9 lines
268 B
JavaScript

const VERSION_REGEX = /^Version: (.*)$/m;
module.exports.readVersion = function (contents) {
return contents.match(VERSION_REGEX)[1];
}
module.exports.writeVersion = function (contents, version) {
return contents.replace(VERSION_REGEX, `Version: ${version}`);
}