mirror of
https://github.com/SynologyOpenSource/pkgscripts-ng.git
synced 2025-07-23 02:55:16 +00:00
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
const { readFileSync } = require('fs');
|
|
|
|
exports.getString = function(file, section, key) {
|
|
const content = readFileSync(file, 'utf8');
|
|
const regex = new RegExp(`^\\[${section}\\][^]*?${key}[^=]*=\\s*"(.*)"`, 'm');
|
|
const match = content.match(regex);
|
|
return match ? match[1] : '';
|
|
};
|
|
|