aureooms/rejuvenate

View on GitHub
src/lib/yaml/parse.js

Summary

Maintainability
A
0 mins
Test Coverage
import YAML from 'yaml';

const parse = (string) => YAML.parse(string);

export default parse;