-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurrying-partial-application.ts
37 lines (30 loc) · 1.23 KB
/
currying-partial-application.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Currying of functions
Copilot sier:
"Currying is the process of transforming a function that takes multiple arguments into a function that takes them one at a time."
*/
import { Transaction, Currency } from "../types";
import * as ExchangeRates from "../constants";
/**
* OPPGAVE 3.1: Gjør om convertCurrency fra oppgave 1 til å være curried.
*/
export const convertCurrency = (exchangeRate: number) => (amount: number) => 0;
/**
* OPPGAVE 3.2: Gjør om isCurrency fra oppgave 1 til å være curried.
*/
export const isCurrencyCurried = (currency: Currency) => {
return (transaction: Transaction) => 0;
};
/**
* OPPGAVE 3.3: Bruk din curried versjon av convertCurrency fra oppgave 3.1 til
* å lage en funksjon som konverterer fra DKK til SEK.
*
* Hint: Du finner riktig konverteringsrate i ExchangeRates
*/
type FromCurrencyToCurrency = (amount: number) => number;
export const dkkToSek: FromCurrencyToCurrency = () => 0;
export const sekToUsd: FromCurrencyToCurrency = () => 0;
export const usdToGbp: FromCurrencyToCurrency = () => 0;
export const gbpToEur: FromCurrencyToCurrency = () => 0;
export const eurToNok: FromCurrencyToCurrency = () => 0;
export const ninetyDkkInNok = eurToNok(gbpToEur(usdToGbp(sekToUsd(dkkToSek(90)))));