mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
/**
|
|
* Format an HTTP method for display in a method badge.
|
|
* Uppercasing is left to the `.openapi-method` CSS.
|
|
*/
|
|
export function formatOpenAPIMethod(method: string): string {
|
|
switch (method) {
|
|
case 'delete':
|
|
return 'DEL';
|
|
case 'options':
|
|
return 'OPTS';
|
|
default:
|
|
return method;
|
|
}
|
|
}
|