mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 03:39:13 +08:00
10 lines
260 B
Text
10 lines
260 B
Text
import { DefinedError } from 'ajv';
|
|
|
|
export const AJV_ERROR_KEYWORD_WEIGHT_MAP: Partial<Record<DefinedError['keyword'], number>> = {
|
|
enum: 1,
|
|
type: 0,
|
|
};
|
|
|
|
export const QUOTES_REGEX = /"/g;
|
|
export const NOT_REGEX = /NOT/g;
|
|
export const SLASH_REGEX = /\//g;
|