Uppercase
@tsed/mongoose
Usage
typescript
import { Uppercase } from "@tsed/mongoose";Overview
ts
function Uppercase(uppercase?: boolean): PropertyDecorator;Description
If truthy, Mongoose will add a custom setter that uppercases this string using JavaScript's built-in String#toUpperCase().
Example
typescript
@Model()
export class EventModel {
@Uppercase()
field: string;
}