@cspell/cspell-pipe 8.6.1 → 8.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare function opUniqueAsync<T, U>(k?: (v: T) => U): (iter: AsyncIterable<T>) => AsyncIterable<T>;
|
|
2
2
|
export declare function opUniqueSync<T, U>(k?: (v: T) => U): (iter: Iterable<T>) => Iterable<T>;
|
|
3
|
-
export declare const opUnique: <T, U = T>(getKey?: (
|
|
3
|
+
export declare const opUnique: <T, U = T>(getKey?: (v: T) => U) => import("../internalTypes.js").PipeFn<T, T>;
|
|
4
4
|
//# sourceMappingURL=unique.d.ts.map
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "8.
|
|
6
|
+
"version": "8.7.0",
|
|
7
7
|
"description": "Library to make working with Iterators/AsyncIterators easier.",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"cspell",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"devDependencies": {
|
|
118
118
|
"globby": "^14.0.1"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "5318079ed11fe77e981287ecf1c40d6f28dd91ed"
|
|
121
121
|
}
|