@endo/common
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34830
390
6
Updated@endo/errors@^1.2.3
Updated@endo/eventual-send@^1.2.3
Updated@endo/promise-kit@^1.1.3