🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

ngx-swiss-five-rappen-chf-pipe

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-swiss-five-rappen-chf-pipe

This pipe provides the Swiss 5 Rappen CHF rounding functionality.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

5 Rappen rounding - Swiss CHF - Angular Pipe - NgxSwissFiveRappenChfPipe

5 Rappen rounding

CHF is the ISO code of the currency of Switzerland and Liechtenstein. The smaller denomination, a hundredth of a franc, is a Rappen (Rp.) in German, centime(c.) in French, centesimo (ct.) in Italian. The 1 rappen coins were officially fully withdrawn from circulation and declared to be no longer legal tender as of 1 January 2007. The lowest unit is 5 cents (0,05).

Rules

Original amountRounded toRounding
x,x1 CHFx,x0 CHF-x,x1 CHF
x,x2 CHFx,x0 CHF-x,x2 CHF
x,x3 CHFx,x5 CHF+x,x2 CHF
x,x4 CHFx,x5 CHF+x,x1 CHF
x,x6 CHFx,x5 CHF-x,x1 CHF
x,x7 CHFx,x5 CHF-x,x2 CHF
x,x8 CHFx,x+10 CHF+x,x2 CHF
x,x9 CHFx,x+10 CHF+x,x1 CHF

Examples

Values between CHF 0,975 and CHF 1,024 will be rounded to CHF 1,00

Values between CHF 1,025 and CHF 1,074 will be rounded to CHF 1,05

Values between CHF 1,075 and CHF 1,124 will be rounded to CHF 1,10

Installation

Run npm install --save ngx-swiss-five-rappen-chf-pipe to install package.

HTML Usage

You can apply this pipe in HTML by using pipe operator "|".

<h2 class="top-spacer">Usage</h2>
  <div class="top-spacer">
    <input type="number" [(ngModel)]="inputValue">
    <h3>Output: {{ inputValue | ngxSwissFiveRappenChf }} </h3>
  </div>

Component Usage

You can call transform() method in your component TypeScript file to convert number.

inputValue = 2.034;
  outputValue!: number;

  ngOnInit() {
    const pipe = new NgxSwissFiveRappenChfPipe();
    this.outputValue = pipe.transform(this.inputValue);
    console.debug('🔥 output', this.outputValue);
  }

Keywords

Angular

FAQs

Package last updated on 12 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts