unmock-core
Version:
[][npmjs] [](https://circleci.com/gh/unmock/unmock-js) [](h
14 lines • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const RESTMethodTypes = [
"get",
"head",
"post",
"put",
"patch",
"delete",
"options",
"trace",
];
exports.isRESTMethod = (maybeMethod) => RESTMethodTypes.toString().includes(maybeMethod.toLowerCase());
//# sourceMappingURL=interfaces.js.map