2015-03-31 22:47:11 +00:00
|
|
|
/**
|
2015-04-10 12:45:02 +02:00
|
|
|
* @module
|
|
|
|
* @description
|
2015-09-09 14:56:48 -07:00
|
|
|
* This module provides a set of common Pipes.
|
2015-03-31 22:47:11 +00:00
|
|
|
*/
|
2015-05-18 17:47:44 -07:00
|
|
|
|
2015-09-03 22:01:36 -07:00
|
|
|
export {AsyncPipe} from './pipes/async_pipe';
|
|
|
|
export {DatePipe} from './pipes/date_pipe';
|
|
|
|
export {DEFAULT_PIPES, DEFAULT_PIPES_TOKEN} from './pipes/default_pipes';
|
|
|
|
export {JsonPipe} from './pipes/json_pipe';
|
|
|
|
export {LimitToPipe} from './pipes/limit_to_pipe';
|
|
|
|
export {LowerCasePipe} from './pipes/lowercase_pipe';
|
|
|
|
export {NumberPipe, DecimalPipe, PercentPipe, CurrencyPipe} from './pipes/number_pipe';
|
|
|
|
export {UpperCasePipe} from './pipes/uppercase_pipe';
|