Skip to content

Instantly share code, notes, and snippets.

@Vatsalya-singhi
Created March 27, 2025 18:36
Show Gist options
  • Save Vatsalya-singhi/ce1f1ac9d363977c851954a0747ae655 to your computer and use it in GitHub Desktop.
Save Vatsalya-singhi/ce1f1ac9d363977c851954a0747ae655 to your computer and use it in GitHub Desktop.
// convert strings to uppercase
import { PipeTransform, Injectable, ArgumentMetadata } from '@nestjs/common';
@Injectable()
export class UppercasePipe implements PipeTransform {
transform(value: any, metadata: ArgumentMetadata) {
return typeof value === 'string' ? value.toUpperCase() : value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment