summary refs log tree commit diff
path: root/src/util/String.ts
blob: 3a8e35a84b18a12faba6c2a5361430e956184831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Request } from "express";
import { FieldErrors } from "./instanceOf";

export function checkLength(str: string, min: number, max: number, key: string, req: Request) {
	if (str.length < min || str.length > max) {
		throw FieldErrors({
			[key]: {
				code: "BASE_TYPE_BAD_LENGTH",
				message: req.t("common:field.BASE_TYPE_BAD_LENGTH", { length: `${min} - ${max}` }),
			},
		});
	}
}