@nestjs/common
Version:
Nest - modern, fast, powerful node.js web framework (@common)
25 lines (24 loc) • 813 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const constants_1 = require("../../constants");
/**
* Setups pipes to the chosen context.
* When the `@UsePipes()` is used on the controller level:
* - Pipe will be set up to every handler (every method)
*
* When the `@UsePipes()` is used on the handle level:
* - Pipe will be set up only to specified method
*
* @param {PipeTransform[]} ...pipes (instances)
*/
function UsePipes(...pipes) {
return (target, key, descriptor) => {
if (descriptor) {
Reflect.defineMetadata(constants_1.PIPES_METADATA, pipes, descriptor.value);
return descriptor;
}
Reflect.defineMetadata(constants_1.PIPES_METADATA, pipes, target);
return target;
};
}
exports.UsePipes = UsePipes;