-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathassertName.ts
40 lines (34 loc) · 1017 Bytes
/
assertName.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { GraphQLError } from '../error/GraphQLError.js';
import { isNameContinue, isNameStart } from '../language/characterClasses.js';
/**
* Upholds the spec rules about naming.
*/
export function assertName(name: string): string {
if (name.length === 0) {
throw new GraphQLError('Expected name to be a non-empty string.');
}
for (let i = 1; i < name.length; ++i) {
if (!isNameContinue(name.charCodeAt(i))) {
throw new GraphQLError(
`Names must only contain [_a-zA-Z0-9] but "${name}" does not.`,
);
}
}
if (!isNameStart(name.charCodeAt(0))) {
throw new GraphQLError(
`Names must start with [_a-zA-Z] but "${name}" does not.`,
);
}
return name;
}
/**
* Upholds the spec rules about naming enum values.
*
* @internal
*/
export function assertEnumValueName(name: string): string {
if (name === 'true' || name === 'false' || name === 'null') {
throw new GraphQLError(`Enum values cannot be named: ${name}`);
}
return assertName(name);
}