Skip to main content
Module

x/opine/src/methods.ts

Fast, minimalist web framework for Deno ported from ExpressJS.
Go to Latest
File
/** * Supported Deno methods. * * @public */export const methods: string[] = [ "get", "post", "put", "head", "delete", "options", // "trace", // As of Deno 1.9.0 - TypeError: Method is forbidden. "copy", "lock", "mkcol", "move", "purge", "propfind", "proppatch", "unlock", "report", "mkactivity", "checkout", "merge", "m-search", "notify", "subscribe", "unsubscribe", "patch", "search", "connect",];