feat(ComponentResolver): Add a SystemJS resolver for compiled apps (#9145)

This commit is contained in:
Victor Berchet
2016-06-10 16:31:34 -07:00
committed by GitHub
parent b866f32832
commit a6e5ddc5af
6 changed files with 46 additions and 12 deletions

View File

@ -128,7 +128,7 @@ export function isNumber(obj: any): boolean {
return typeof obj === 'number';
}
export function isString(obj: any): boolean {
export function isString(obj: any): obj is String {
return typeof obj === 'string';
}