Skip to content

Instantly share code, notes, and snippets.

@justintien
Last active June 12, 2020 16:37
Show Gist options
  • Save justintien/ac8abf5740bd958e07058287ee9c3e10 to your computer and use it in GitHub Desktop.
Save justintien/ac8abf5740bd958e07058287ee9c3e10 to your computer and use it in GitHub Desktop.
Just note... YsakON
// ref https://stackoverflow.com/questions/34036018/to-print-all-the-paths-in-a-json-object
```js
var YsakON = { // YsakObjectNotation
stringify: function (o, prefix) {
prefix = prefix || 'root'
switch (typeof o) {
case 'object':
if (Array.isArray(o)) { return prefix + '=' + JSON.stringify(o) + '\n' }
var output = ''
for (var k in o) {
if (o.hasOwnProperty(k)) { output += this.stringify(o[k], prefix + '.' + k) }
}
return output
case 'function':
return ''
default:
return prefix + '=' + o + '\n'
}
},
}
var o = {
a: 1,
b: true,
c: {
d: [1, 2, 3]
},
calc: 1+2+3,
f: function(x) { // ignored
}
};
console.log(YsakON.stringify(o);
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment