This commit is contained in:
Lukian LEIZOUR 2022-11-26 15:56:34 +01:00
parent 70e2f7a8aa
commit 008d2f30d7
675 changed files with 189892 additions and 0 deletions

10
node_modules/axo/test.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
/* istanbul ignore next */
this.ActiveXObject = global.ActiveXObject = function foobar() {
// Node doesn't have an ActiveXObject so introduce it as global.
};
var assert = require('assert')
, AXO = require('./');
assert.ok('function' === typeof AXO, 'should export the ActiveXObject constructor');
assert.ok(AXO === ActiveXObject, 'it should return the ActiveXObject');