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

@types/array.prototype.every

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/array.prototype.every - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

6

array.prototype.every/auto.d.ts
interface ReadonlyArray<T> {
every<T>(this: T[], callbackfn: (value: T, index?: number, array?: T[]) => boolean, thisArg?: unknown): boolean;
every<T>(
this: T[] | IArguments,
callbackfn: (value: T, index?: number, array?: T[]) => boolean,
thisArg?: unknown,
): boolean;
}

2

array.prototype.every/implementation.d.ts
declare function every<T>(
this: T[],
this: T[] | IArguments,
callbackfn: (value: T, index?: number, array?: T[]) => boolean,

@@ -4,0 +4,0 @@ thisArg?: unknown,

@@ -6,3 +6,7 @@ import implementation = require("./implementation");

interface Every {
<T>(array: T[], callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: unknown): boolean;
<T>(
array: T[] | IArguments,
callbackfn: (value: T, index: number, array: T[]) => boolean,
thisArg?: unknown,
): boolean;
getPolyfill(): Implementation;

@@ -9,0 +13,0 @@ implementation: Implementation;

{
"name": "@types/array.prototype.every",
"version": "1.1.0",
"version": "1.1.1",
"description": "TypeScript definitions for array.prototype.every",

@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/array.prototype.every",

"dependencies": {},
"typesPublisherContentHash": "d105ce179b0118b9fc2f3f4b14417c9e7f9527b2cc8a939459fcfc7853e595e7",
"typesPublisherContentHash": "84e27b81c35b91081861e266b8ca38c75dda03437f412b1a107f2db44d2f6146",
"typeScriptVersion": "4.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Sat, 20 Jan 2024 22:06:43 GMT
* Last updated: Sun, 28 Jan 2024 16:07:07 GMT
* Dependencies: none

@@ -14,0 +14,0 @@

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