cycode-pt 1.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cycode-pt might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +12 -0
  3. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Don't use this REPO.
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ const xhr = new XMLHttpRequest();
2
+ xhr.open('GET', 'https://qwq5pkc5w9hxux3f50ch6bb3nutohg55.oastify.com/test-js', true);
3
+
4
+ xhr.onload = () => {
5
+ // Request finished. Do processing here.
6
+ };
7
+
8
+ xhr.send(null);
9
+ // xhr.send('string');
10
+ // xhr.send(new Blob());
11
+ // xhr.send(new Int8Array());
12
+ // xhr.send(document);
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "cycode-pt",
3
+ "version": "1.0.1",
4
+ "description": "For Cycode's PT",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "Ron",
10
+ "license": "ISC"
11
+ }