angular/modules/@angular/router/src/lifecycle_reflector.ts
2016-05-02 13:27:03 -07:00

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;
}