(className: string)
| 481 | } |
| 482 | |
| 483 | function invalidClassNameMessage(className: string): string { |
| 484 | return ( |
| 485 | 'Invalid classname: ' + |
| 486 | className + |
| 487 | ', classnames can only have alphanumeric characters and _, and must start with an alpha character ' |
| 488 | ); |
| 489 | } |
| 490 | |
| 491 | const invalidJsonError = new Parse.Error(Parse.Error.INVALID_JSON, 'invalid JSON'); |
| 492 | const validNonRelationOrPointerTypes = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…