request-pre
Version:
process format data before request send
14 lines (13 loc) • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var methods;
(function (methods) {
methods["GET"] = "GET";
methods["POST"] = "POST";
methods["HEAD"] = "HEAD";
methods["PUT"] = "PUT";
methods["PATCH"] = "PATCH";
methods["DELETE"] = "DELETE";
methods["OPTIONS"] = "OPTIONS";
})(methods || (methods = {}));
exports.default = methods;