argos/dmp-frontend/src/app/core/services/utilities/type-utils.service.ts

7 lines
170 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { Injectable } from '@angular/core';
@Injectable()
export class TypeUtils {
public isString(value: any): value is string { return typeof value === 'string'; }
}