How does JS format YAML (line feeds)?

for example:

name: xxx

version: 0.0.1

object:
    a: 1
    b: 2

array: 
    - 1
    - 2
Mar.02,2021

I don't understand. Do you want to convert a YAML into an object? There are tools that can be implemented.


js and yaml format conversion, you can use the node module js-yaml

Menu