ViteOrder

Results 5 issues of ViteOrder

[Minimal reproduable example](https://jsbin.com/beyogituga/edit?js,console), would print `true` twice if there werent a bug. Heres a senario where having multiple instances is handy: You want to give someone else permission to write...

https://jsbin.com/raleguqaca/1/edit?js,console ```js gun.get('layer0').put({ value: true, emptyObject: {}, layer1: { value: false, value2: false, layer2: {a:1} } }) gun.get('layer0').get('layer1').once(print) ``` everything in layer1 wont get added because of the empty object....

Heres a senario: ```js { "mention": { // I want users to be able to write "posts": { // here }, "comments": { // and here }, // but not...

I'm sanitizing SEO tags, and want to only allow meta tags. So I use these options ```js { allowedTags: ['meta'], allowedAttributes: { meta: ['*'] }, } ``` This prevents all...

seeking contributions

Say I have a folder that is already uploaded to w3storage. I want to include that folder in a new directory, but I dont want to upload the folder again....