Every line of 'javascript check if function exists' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
241 function checkForFunction< 242 T extends ((id: string) => void) | PromiseLike | Models.Discovery.Controller 243 >(func: T) { 244 return new Promise((resolve, reject) => { 245 return typeof func !== 'function' 246 ? reject(new Error('CONTROLLER_IS_NOT_A_FUNCTION')) 247 : resolve(func); 248 }); 249 }