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 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.log("User clicked YES");
61
+ console.debug("User clicked YES");
62
62
  });
63
63
 
64
64
  prompt("What's your name?", (name) => {
65
- console.log("User entered:", name);
65
+ console.debug("User entered:", name);
66
66
  });
67
67
 
68
68
  message("Operation complete!");