New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bettercorp/tools

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bettercorp/tools - npm Package Compare versions

Comparing version 2.1.5-rc to 2.1.6-rc

1

lib/Tools.d.ts

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

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc