feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

20
Skills/@be/be/node_modules/es3ify/README.md generated vendored Normal file
View File

@@ -0,0 +1,20 @@
# es3ify
Browserify transform to convert quote reserved words in property keys for compatibility with ES3 JavaScript engines like IE8. In addition, trailing commas in array and object literals are removed.
```javascript
// In
var x = {class: 2,};
x.class = [3, 4,];
// Out:
var x = {"class": 2};
x["class"] = [3, 4];
```
Run tests with:
```sh
npm install -g jasmine-node
jasmine-node spec
```