@bettercorp/tools
Advanced tools
Comparing version 2.1.5-rc to 2.1.6-rc
@@ -38,2 +38,3 @@ import * as MOMENT from "moment"; | ||
static waitDelayThenThrow(checkFunc: Function, rejectFunc: Function, time?: number, timeout?: number): Promise<void>; | ||
static isSimpleType(value: any): boolean; | ||
static isString(value: any): boolean; | ||
@@ -40,0 +41,0 @@ static isDate(value: any, matchString?: boolean): boolean; |
@@ -310,2 +310,5 @@ "use strict"; | ||
} | ||
static isSimpleType(value) { | ||
return (Tools.isBoolean(value) || Tools.isNumber(value) || Tools.isString(value)); | ||
} | ||
static isString(value) { | ||
@@ -312,0 +315,0 @@ return typeof value === "string" || value instanceof String; |
@@ -20,3 +20,3 @@ { | ||
"main": "lib/index.js", | ||
"version": "2.1.5-rc", | ||
"version": "2.1.6-rc", | ||
"devDependencies": { | ||
@@ -23,0 +23,0 @@ "@types/crypto-js": "^4.1.1", |
Sorry, the diff of this file is not supported yet
80408
672