liveview
Version:
Titanium Live Realtime App Development
70 lines (60 loc) • 870 B
JavaScript
/**
* Crittercism Spoofed Function
*/
var Crittercism = module.exports = {};
/**
* no-op
*/
Crittercism.init = function () {
return;
};
/**
* no-op
*/
Crittercism.setEmail = function () {
return;
};
/**
* no-op
*/
Crittercism.setMetadata = function () {
return;
};
/**
* no-op
*/
Crittercism.setOptOutStatus = function () {
return;
};
/**
* no-op
*/
Crittercism.setUsername = function () {
return;
};
/**
* no-op, always returns `false`
* @return {boolean} always returns false
*/
Crittercism.didCrashOnLastAppLoad = function () {
return false;
};
/**
* no-op, always returns `true`
* @return {boolean} always returns true
*/
Crittercism.getOptOutStatus = function () {
return true;
};
/**
* no-op
*/
Crittercism.leaveBreadcrumb = function () {
return;
};
/**
* no-op
*/
Crittercism.logHandledException = function () {
return;
};