/** * @license * Copyright Google LLC 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 {registerLocaleData} from '@angular/common'; import {Component} from '@angular/core'; // we need to import data for the french locale import localeFr from './locale-fr'; registerLocaleData(localeFr, 'fr'); // #docregion NumberPipe @Component({ selector: 'number-pipe', template: `
No specified formatting: {{pi | number}}
With digitsInfo parameter specified: {{pi | number:'4.1-5'}}
With digitsInfo and locale parameters specified: {{pi | number:'4.1-5':'fr'}}