We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc256eb commit 107028bCopy full SHA for 107028b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "strontium",
3
- "version": "2.4.11",
+ "version": "2.4.12",
4
"description": "Strontium is a TypeScript toolkit for High Performance API servers built for Production not Projects.",
5
"main": "lib/src/index.js",
6
"types": "lib/src/index.d.ts",
src/validation/drivers/validators/isExactly.ts
import { ValidationError } from "../../../errors"
-export const isExactly = <V extends Array<O>, O>(values: V) => (
+export const isExactly = <O>(values: Array<O>) => (
i: unknown
): O => {
for (let value of values) {
0 commit comments