NestJS - Pipes
Identify the error in this custom pipe code:
import { PipeTransform } from '@nestjs/common';
export class MyPipe implements PipeTransform {
transform(value) {
return value.toUpperCase();
}
}