oprah
Version:
Package to deploy parameters to AWS
16 lines (10 loc) • 338 B
JavaScript
const yaml = require('js-yaml');
const parseYML = contents => yaml.load(contents, { json: true });
const isYAML = filePath => filePath.endsWith('.yml');
const parse = ({ filePath, contents }) => {
if (isYAML(filePath)) {
return parseYML(contents);
}
throw new Error('Unsupported file type');
};
module.exports = { parse };