Appearance
const json: Validator<string>;
JSON string validation / JSON 字符串验证
json('{"key":"value"}') // => { isValid: true, message: undefined } json('{bad json}') // => { isValid: false, message: 'Invalid JSON string / JSON格式无效' }
1.0.0