(obj: any)
| 904 | } |
| 905 | |
| 906 | export function stringifyYaml(obj: any): string { |
| 907 | return require('yaml').stringify(obj); |
| 908 | } |
| 909 | |
| 910 | export function parseYaml(text: string): any { |
| 911 | return require('yaml').parse(text); |
no outgoing calls
no test coverage detected