Not perfect but it can parse the rainloop script to a tree and back to string

This commit is contained in:
djmaze 2021-01-14 12:45:51 +01:00
parent b2e77f3f67
commit 2786d0d959
5 changed files with 155 additions and 113 deletions

View file

@ -9,7 +9,10 @@
Tests: {},
parseScript: ()=>{},
*/
Extensions: {}
Extensions: {},
arrayToString: (arr, separator) =>
arr.map(item => item.toString ? item.toString() : item).join(separator)
};
})(this);