UNPKG

widget-router

Version:

Widget Router is another Typescript (also JavaScript) Router, but this one works better if used in widgets inside HTML

10 lines 215 B
export namespace Utilities{ export function isFunction(obj) { return obj !== undefined && obj !== null && !!(obj && obj.constructor && obj.call && obj.apply); } }