How to use 'javascript check if function exists' in JavaScript

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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
241function 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}

Related snippets