improve multiselect

This commit is contained in:
LouisLam
2021-08-08 21:03:10 +08:00
parent 7b1000d995
commit 3265c3cbc3
5 changed files with 41 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ function ucfirst(str) {
exports.ucfirst = ucfirst;
function debug(msg) {
if (process.env.NODE_ENV === "development") {
console.debug(msg);
console.log(msg);
}
}
exports.debug = debug;