Files
Anders Schack-Mulligen e58094c732 Javascript: Autoformat.
2019-01-11 11:02:42 +01:00

10 lines
145 B
Plaintext

/**
* Some commonly used HTTP verbs.
*/
string httpVerb() {
result = "get" or
result = "put" or
result = "post" or
result = "delete"
}