alkocats/http-ts

View on GitHub
src/controller/decorator/http_method/HttpHead.ts

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
import { HttpHeadAction } from '../../helper/http_method/HttpHeadAction';
import { assign } from './assign';

export function HttpHead(path: string): Function {
    return assign(path, HttpHeadAction);
}