mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
8 lines
267 B
TypeScript
8 lines
267 B
TypeScript
import {Type, isBlank} from './facade/lang';
|
|
|
|
export function hasLifecycleHook(name: string, obj: Object): boolean {
|
|
if (isBlank(obj)) return false;
|
|
let type = obj.constructor;
|
|
if (!(type instanceof Type)) return false;
|
|
return name in(<any>type).prototype;
|
|
}
|