The default condition for all cloaking functions is true.
This happens when you reference the cloaked function in your cloaking function, causing a circular reference. Example of this error:
function myLogFn(){
console.log('Hi');
}
cloak(console, 'log').cloakWith(myLogFn);
console.log('test');