(ext: string)
| 212 | } |
| 213 | |
| 214 | export function extensionIsYamlOrJSON(ext: string): boolean { |
| 215 | return ext === '.yaml' || ext === '.yml' || ext === '.json'; |
| 216 | } |
| 217 | |
| 218 | export function forbidNonWhitelisted(keys: any, validationOptions?: ValidationOptions) { |
| 219 | return function (object: object, propertyName: string): void { |
no outgoing calls
no test coverage detected