in src/AutoSubscriptions.ts [150:155]
export function forbidAutoSubscribeWrapper<T extends any[], R>(existingMethod: (...args: T) => R, thisArg?: any): (...args: T) => R {
if (!Options.development) {
return thisArg ? existingMethod.bind(thisArg) : existingMethod;
}
return createAutoSubscribeWrapper(undefined, AutoOptions.Forbid, existingMethod, thisArg);
}