mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE: Exceptions are no longer part of the public API. We don't expect that anyone should be referring to the Exception types. ExceptionHandler.call(exception: any, stackTrace?: any, reason?: string): void; change to: ErrorHandler.handleError(error: any): void;
31 lines
852 B
TypeScript
31 lines
852 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {Pipe, PipeTransform} from '@angular/core';
|
|
import {isBlank, isString} from '../facade/lang';
|
|
import {InvalidPipeArgumentError} from './invalid_pipe_argument_error';
|
|
|
|
/**
|
|
* Implements uppercase transforms to text.
|
|
*
|
|
* ### Example
|
|
*
|
|
* {@example core/pipes/ts/lowerupper_pipe/lowerupper_pipe_example.ts region='LowerUpperPipe'}
|
|
*
|
|
* @stable
|
|
*/
|
|
@Pipe({name: 'uppercase'})
|
|
export class UpperCasePipe implements PipeTransform {
|
|
transform(value: string): string {
|
|
if (isBlank(value)) return value;
|
|
if (!isString(value)) {
|
|
throw new InvalidPipeArgumentError(UpperCasePipe, value);
|
|
}
|
|
return value.toUpperCase();
|
|
}
|
|
}
|