1
0
mirror of https://github.com/chylex/objtree.git synced 2025-05-19 21:34:04 +02:00

Create README.md

This commit is contained in:
Daniel Chýlek 2017-07-23 15:09:55 +02:00 committed by GitHub
parent 5b40eb6976
commit 0bbcf33ccb

27
README.md Normal file
View File

@ -0,0 +1,27 @@
`objtree` is a script that generates a text tree representation of an object. The script can be executed in a browser console.
# How to Use
```js
var target = {};
var result = objtree(target, {
// Maximum level of recursion
maxlevel: 10,
// Prefixed before every name (ex. window)
grandparent: "",
// Array of strings (behaving like regular expressions) matched against names to exclude
// Use / to separate nested objects (ex. {a:{b:{c:true}}} will be a/b/c)
// Note that grandparent is not included in the name matching process
exclude: []
});
result.asObj(); // returns internal representation of the tree
result.asText(); // returns a formatted text representation
result.downloadText(filename); // triggers a browser file download with the formatted text
```
# Examples
TODO