Fix typo, typof, typeof
This commit is contained in:
parent
b1617520cb
commit
31cf44b999
2 changed files with 2 additions and 2 deletions
|
|
@ -293,7 +293,7 @@ exports.rmdirRecursive = function rmdirRecursive(dir, failSilent, clbk){
|
|||
if(err && typeof failSilent === 'boolean' && !failSilent)
|
||||
return clbk(err);
|
||||
|
||||
if(typof failSilent === 'function')
|
||||
if(typeof failSilent === 'function')
|
||||
clbk = failSilent;
|
||||
|
||||
(function rmFile(err){
|
||||
|
|
|
|||
Reference in a new issue