2016-06-23 16:47:54 +00:00
|
|
|
/**
|
|
|
|
|
* @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
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-31 22:47:11 +00:00
|
|
|
/**
|
2015-04-10 10:45:02 +00:00
|
|
|
* @module
|
|
|
|
|
* @description
|
2015-09-09 21:56:48 +00:00
|
|
|
* This module provides a set of common Pipes.
|
2015-03-31 22:47:11 +00:00
|
|
|
*/
|
2015-05-19 00:47:44 +00:00
|
|
|
|
2015-09-04 05:01:36 +00:00
|
|
|
export {AsyncPipe} from './pipes/async_pipe';
|
|
|
|
|
export {DatePipe} from './pipes/date_pipe';
|
2016-06-08 23:38:52 +00:00
|
|
|
export {I18nPluralPipe} from './pipes/i18n_plural_pipe';
|
|
|
|
|
export {I18nSelectPipe} from './pipes/i18n_select_pipe';
|
2015-09-04 05:01:36 +00:00
|
|
|
export {JsonPipe} from './pipes/json_pipe';
|
|
|
|
|
export {LowerCasePipe} from './pipes/lowercase_pipe';
|
2016-06-08 23:38:52 +00:00
|
|
|
export {CurrencyPipe, DecimalPipe, PercentPipe} from './pipes/number_pipe';
|
|
|
|
|
export {SlicePipe} from './pipes/slice_pipe';
|
|
|
|
|
export {UpperCasePipe} from './pipes/uppercase_pipe';
|