mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 09:24:51 +00:00
fix(cloudcmd) typeof undefined -> "undefined"
This commit is contained in:
parent
f5bd52bac9
commit
cd46dd4a81
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@
|
|||
options = p.config || {},
|
||||
keys = Object.keys(options);
|
||||
|
||||
if (typeof params.prefix !== undefined) {
|
||||
if (typeof params.prefix !== 'undefined') {
|
||||
console.log('cloudcmd: prefix property deprecated, use config.prefix instead');
|
||||
options.prefix = params.prefix;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue