You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
307 B

var utilRequest = {
/**
* request method
* @returns {string}
*/
GET : function () {
return "GET";
},
POST : function () {
return "post";
},
DELETE : function () {
return "DELETE";
},
PUT : function () {
return "PUT";
}
}