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

@endo/common

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@endo/common - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

4

from-unique-entries.d.ts

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

export function fromUniqueEntries<K, V>(allEntries: Iterable<[K, V]>): {};
export function fromUniqueEntries<T = any>(allEntries: Iterable<readonly [PropertyKey, T]>): {
[k: string]: T;
};
//# sourceMappingURL=from-unique-entries.d.ts.map

@@ -11,5 +11,5 @@ import { q, Fail } from '@endo/errors';

*
* @template K,V
* @param {Iterable<[K,V]>} allEntries
* @returns {{[k: K]: V}}
* @template [T=any]
* @param {Iterable<readonly [PropertyKey, T]>} allEntries
* @returns {{ [k: string]: T; }}
*/

@@ -16,0 +16,0 @@ export const fromUniqueEntries = allEntries => {

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

export function makeArrayIterator<T = unknown>(arr: T[]): IterableIterator<T>;
export function makeArrayIterator<T = unknown>(arr: Array<T>): IterableIterator<T>;
//# sourceMappingURL=make-array-iterator.d.ts.map

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

export function makeIterator<T = unknown>(next: () => IteratorResult<T, any>): IterableIterator<T>;
export function makeIterator<T = unknown>(next: () => IteratorResult<T>): IterableIterator<T>;
//# sourceMappingURL=make-iterator.d.ts.map
{
"name": "@endo/common",
"version": "1.2.2",
"version": "1.2.3",
"description": "common low level utilities",

@@ -32,4 +32,4 @@ "keywords": [],

"build": "exit 0",
"build:types": "tsc --build tsconfig.build.json",
"clean:types": "git clean -f '*.d.ts*'",
"prepack": "tsc --build tsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"lint": "yarn lint:types && yarn lint:eslint",

@@ -45,12 +45,13 @@ "lint-check": "yarn lint",

"dependencies": {
"@endo/errors": "^1.2.2",
"@endo/eventual-send": "^1.2.2",
"@endo/promise-kit": "^1.1.2"
"@endo/errors": "^1.2.3",
"@endo/eventual-send": "^1.2.3",
"@endo/promise-kit": "^1.1.3"
},
"devDependencies": {
"@endo/lockdown": "^1.0.7",
"@endo/ses-ava": "^1.2.2",
"ava": "^6.1.2",
"@endo/lockdown": "^1.0.8",
"@endo/ses-ava": "^1.2.3",
"ava": "^6.1.3",
"c8": "^7.14.0",
"tsd": "^0.30.7"
"tsd": "^0.30.7",
"typescript": "5.5.2"
},

@@ -74,7 +75,8 @@ "files": [

"files": [
"test/**/test-*.js"
"test/**/test-*.*",
"test/**/*.test.*"
],
"timeout": "2m"
},
"gitHead": "08e59bc0d262565165636c2e3875bbe3dcb91cf8"
"gitHead": "681b813ccb1fa177905dabf2ed3f5f248cb33ce7"
}
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