helml
v1.0.14
Published
encode/decode HELML data
Downloads
9
Maintainers
Readme
HELML
Install
$ npm install helml
Usage
As an ES6 Module
import HELML from "helml";
let arr = {
"A": [1,2,3],
"B": "This is B-key",
"C": null,
"D": {
"E": "Sub",
"F": "Sub2"
}
};
let enc = HELML.encode(arr);
console.log(enc);
let dec = HELML.decode(enc);
Result:
A:
:--: 1
:--: 2
:--: 3
#
B: This is B-key
C: N
D
:E: Sub
:F: Sub2
#
See also:
- plugin "HELML" for Visual Studio Code
- Try online HELML plugin in vscode.dev