commit
This commit is contained in:
parent
70e2f7a8aa
commit
008d2f30d7
675 changed files with 189892 additions and 0 deletions
17
node_modules/axo/index.js
generated
vendored
Normal file
17
node_modules/axo/index.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
//
|
||||
// So this might need some explanation. There are firewalls, virus scanners and
|
||||
// what more that inspect the contents of files that is downloaded over the
|
||||
// internet and search for potential bad words. Some of them assume that
|
||||
// ActiveXObject is a bad word and will block the complete file from loading. In
|
||||
// order to prevent this from happening we've pre-decoded the word ActiveXObject
|
||||
// by changing the charCodes.
|
||||
//
|
||||
module.exports = (function AXO(x, i) {
|
||||
var target = typeof global !== 'undefined' ? global : window;
|
||||
|
||||
for (i = 0; i < x.length; i++) {
|
||||
x[i] = String.fromCharCode(x[i].charCodeAt(0) + i);
|
||||
}
|
||||
|
||||
return target[x.join('')];
|
||||
})('Abrfr`RHZa[Xh'.split(''));
|
Loading…
Add table
Add a link
Reference in a new issue