Initial commit

This commit is contained in:
Spencer Pincott
2024-07-15 22:20:13 -04:00
commit 97737ca1ae
16618 changed files with 934131 additions and 0 deletions

2
themes/keepit/node_modules/browserify/test/tr/f.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
t.equal(XYZ, 909);
module.exports = function (x) { return x + BBB }

View File

@@ -0,0 +1,9 @@
var f = require('./f.js');
var m = require('m');
var g = require('g');
t.equal(require('./subdir/g.js'), 999);
t.equal(m(f(AAA)), 555, 'transformation scope');
t.equal(g(3), 332, 'sub-transformation applied');
t.equal(typeof GGG, 'undefined', 'GGG leak');
t.equal(XYZ, 909);

View File

@@ -0,0 +1,5 @@
{
"browserify": {
"transform": [ "xyz" ]
}
}

View File

@@ -0,0 +1 @@
module.exports = XYZ + 90;