mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-17 07:45:52 +01:00
5840eb9d5e
it might be incomplete
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
const path = require("path");
|
|
const fs = require("fs");
|
|
const parseYaml = require("js-yaml").safeLoad;
|
|
|
|
function loadYaml(fsPath) {
|
|
return parseYaml(fs.readFileSync(path.join(__dirname, fsPath), "utf8"));
|
|
}
|
|
|
|
module.exports = {
|
|
loadYaml
|
|
};
|