fix(cloudcmd) typeof undefined -> "undefined"

This commit is contained in:
coderaiser 2015-08-11 06:02:24 -04:00
parent f5bd52bac9
commit cd46dd4a81

View file

@ -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;
}