mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
d84796588c
* cleanup: trim trailing whitespace * update(`.editorconfig`) --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
import { Schema } from '@/misc/schema';
|
|
import Ajv from 'ajv';
|
|
|
|
export const getValidator = (paramDef: Schema) => {
|
|
const ajv = new Ajv({
|
|
useDefaults: true,
|
|
});
|
|
ajv.addFormat('misskey:id', /^[a-zA-Z0-9]+$/);
|
|
|
|
return ajv.compile(paramDef);
|
|
}
|