Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

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;