UNPKG

rjweb-server

Version:

Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS

17 lines (16 loc) 336 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * HTTP Methods Enum * @since 9.0.0 */ exports.default = Object.freeze({ CONNECT: 'CONNECT', TRACE: 'TRACE', OPTIONS: 'OPTIONS', DELETE: 'DELETE', PATCH: 'PATCH', HEAD: 'HEAD', POST: 'POST', PUT: 'PUT', GET: 'GET' });