Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

isntnt

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isntnt - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

4

dist/lib/types.d.ts

@@ -25,6 +25,6 @@ declare type ObjectWith<K extends PropertyKey> = {

export declare type SerializablePrimitive = null | boolean | number | string;
export declare type SerializableObject = {
export declare type SerializableObject = Partial<{
[key: string]: Serializable;
};
}>;
export declare type Serializable = SerializablePrimitive | SerializableObject | SerializableArray;
export {};
{
"name": "isntnt",
"version": "1.3.0",
"version": "1.3.1",
"description": "A collection of composable JavaScript runtime type predicates with TypeScript type guard declarations",

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

@@ -252,3 +252,3 @@ Isntnt is a collection of composable JavaScript runtime type predicates with TypeScript type guard declarations. Supports generics including union and intersection types.

```typescript
isObject(value) // value is object
isObject(value) // value is {}
```

@@ -262,2 +262,7 @@

## isPlainObject
```typescript
isPlainObject({}) // value is {}
```
## isPositive

@@ -264,0 +269,0 @@

@@ -38,3 +38,3 @@ type ObjectWith<K extends PropertyKey> = { [P in K]: unknown }

export type SerializablePrimitive = null | boolean | number | string
export type SerializableObject = { [key: string]: Serializable }
export type SerializableObject = Partial<{ [key: string]: Serializable }>
export type Serializable = SerializablePrimitive | SerializableObject | SerializableArray
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