layerpro 2.0.1 → 2.0.2
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.
- package/README.md +2 -2
- package/index.cjs +18 -490
- package/index.css +1 -0
- package/index.js +18 -490
- package/package.json +1 -2
- package/index.global.js +0 -545
package/README.md
CHANGED
|
@@ -58,11 +58,11 @@ That's it. Now you have `alert()`, `confirm()`, `prompt()`, and `message()` glob
|
|
|
58
58
|
alert("Hello World!");
|
|
59
59
|
|
|
60
60
|
confirm("Are you sure?", () => {
|
|
61
|
-
console.
|
|
61
|
+
console.debug("User clicked YES");
|
|
62
62
|
});
|
|
63
63
|
|
|
64
64
|
prompt("What's your name?", (name) => {
|
|
65
|
-
console.
|
|
65
|
+
console.debug("User entered:", name);
|
|
66
66
|
});
|
|
67
67
|
|
|
68
68
|
message("Operation complete!");
|