mimopotato / funcml-core

Makes writing YAML or JSON files super cool with functions support!
https://funcml.org
MIT License
0 stars 0 forks source link

values should be implemented #15

Closed mimopotato closed 4 months ago

mimopotato commented 4 months ago

_values should only returns values from a hash as array.

hashes: {key: value, second-key: second-value}

all_values:
  _values: $hashes

Would be rendered as:

all_values:
  - value
  - second-value