This commit is contained in:
zino
2021-03-02 00:06:38 +01:00
parent 3a8aab0e9a
commit eeb745b013
3567 changed files with 1234741 additions and 0 deletions

4
client/node_modules/browserify/test/noparse/a.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
module.exports = {
a: true,
b: require('./b')
};

5
client/node_modules/browserify/test/noparse/b.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
module.exports = {
b: true,
1: require('./dir1/1'),
robot: require('robot')
};

View File

@@ -0,0 +1,4 @@
module.exports = {
1: true,
2: require('./dir2/2')
};

View File

@@ -0,0 +1,3 @@
module.exports = {
2: true
};