js-yaml icon indicating copy to clipboard operation
js-yaml copied to clipboard

JavaScript YAML parser and dumper. Very fast.

Results 62 js-yaml issues
Sort by recently updated
recently updated
newest added

Is there any way I can access YAML anchors? Take this example: ```yaml shared: &shared - common/**/* - config/**/* src: - *shared - src/**/* backend: - '!(**/*.tsx|**/*.less)' ``` If I...

Hi! When I parse this yaml : ```yaml :key: value ``` `yaml.dump` return this : ```yaml ':key': value ``` But starting a key with a colon is well a valid...