const idRegex = /^\w\d{8,}$/;

export function isProductId(id: string | number) {
	return idRegex.test(String(id));
}
