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

@pacote/is-plain-object

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pacote/is-plain-object - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

CHANGELOG.md

2

lib/cjs/index.d.ts

@@ -1,1 +0,1 @@

export declare function isPlainObject(o: any): o is {};
export declare function isPlainObject(o: unknown): o is Record<string, unknown>;
"use strict";
exports.__esModule = true;
exports.isPlainObject = void 0;
function isPlainObject(o) {

@@ -4,0 +5,0 @@ return (o != null &&

@@ -1,1 +0,1 @@

export declare function isPlainObject(o: any): o is {};
export declare function isPlainObject(o: unknown): o is Record<string, unknown>;
{
"name": "@pacote/is-plain-object",
"description": "Checks whether the provided object is a plain JavaScript object.",
"version": "1.1.2",
"version": "1.1.3",
"sideEffects": false,

@@ -35,3 +35,3 @@ "license": "MIT",

},
"gitHead": "989256011c9c9fd39a12f40d7777709bab5552eb"
"gitHead": "0457bf5ba5b06f080e176a2e311767d1b9a80227"
}

@@ -1,2 +0,2 @@

export function isPlainObject(o: any): o is {} {
export function isPlainObject(o: unknown): o is Record<string, unknown> {
return (

@@ -3,0 +3,0 @@ o != null &&

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