mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-04-23 14:34:43 +00:00
9 lines
268 B
JavaScript
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}`);
|
|
}
|