Last active
June 12, 2020 16:37
-
-
Save justintien/ac8abf5740bd958e07058287ee9c3e10 to your computer and use it in GitHub Desktop.
Just note... YsakON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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