UNPKG

passed-time

Version:

get how much time has passed before reached this momentcls

13 lines (12 loc) 274 B
export class TypeCheck { // protected constructor(private name:any){} isString(x) { return typeof x === "string"; } isNumber(x) { return typeof x === "number"; } isObject(x) { return typeof x === "object"; } }