Socket
Socket
Sign inDemoInstall

@thi.ng/checks

Package Overview
Dependencies
Maintainers
1
Versions
164
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/checks - npm Package Compare versions

Comparing version 1.5.8 to 1.5.9

is-not-string-iterable.d.ts

1

index.d.ts

@@ -31,2 +31,3 @@ export * from "./exists-not-null";

export * from "./is-node";
export * from "./is-not-string-iterable";
export * from "./is-null";

@@ -33,0 +34,0 @@ export * from "./is-number";

@@ -36,2 +36,3 @@ "use strict";

__export(require("./is-node"));
__export(require("./is-not-string-iterable"));
__export(require("./is-null"));

@@ -38,0 +39,0 @@ __export(require("./is-number"));

3

is-plain-object.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const OBJP = Object.getPrototypeOf({});
/**

@@ -12,4 +13,4 @@ * Similar to `isObject()`, but also checks if prototype is that of

return Object.prototype.toString.call(x) === "[object Object]" &&
(proto = Object.getPrototypeOf(x), proto === null || proto === Object.getPrototypeOf({}));
(proto = Object.getPrototypeOf(x), proto === null || proto === OBJP);
}
exports.isPlainObject = isPlainObject;
{
"name": "@thi.ng/checks",
"version": "1.5.8",
"version": "1.5.9",
"description": "Single-function sub-modules for type, feature & value checks",

@@ -5,0 +5,0 @@ "main": "./index.js",

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