123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.NUMBERS = void 0;
- const messages_js_1 = require("../messages.js");
- function onePrefix_(num, mill = false) {
- return num === exports.NUMBERS.ones[1] ? (mill ? 'et' : 'en') : num;
- }
- function hundredsToWords_(num, ordinal = false) {
- let n = num % 1000;
- let str = '';
- let ones = exports.NUMBERS.ones[Math.floor(n / 100)];
- str += ones ? onePrefix_(ones, true) + ' hundrede' : '';
- n = n % 100;
- if (n) {
- str += str ? ' og ' : '';
- ones = ordinal ? exports.NUMBERS.special.smallOrdinals[n] : exports.NUMBERS.ones[n];
- if (ones) {
- str += ones;
- }
- else {
- const tens = ordinal
- ? exports.NUMBERS.special.tensOrdinals[Math.floor(n / 10)]
- : exports.NUMBERS.tens[Math.floor(n / 10)];
- ones = exports.NUMBERS.ones[n % 10];
- str += ones ? onePrefix_(ones) + 'og' + tens : tens;
- }
- }
- return str;
- }
- function numberToWords(num, ordinal = false) {
- if (num === 0) {
- return exports.NUMBERS.zero;
- }
- if (num >= Math.pow(10, 36)) {
- return num.toString();
- }
- let pos = 0;
- let str = '';
- while (num > 0) {
- const hundreds = num % 1000;
- if (hundreds) {
- const hund = hundredsToWords_(hundreds, ordinal && !pos);
- if (pos) {
- const large = exports.NUMBERS.large[pos];
- const plural = hundreds > 1 ? 'er' : '';
- str =
- onePrefix_(hund, pos <= 1) +
- ' ' +
- large +
- plural +
- (str ? ' og ' : '') +
- str;
- }
- else {
- str = onePrefix_(hund) + str;
- }
- }
- num = Math.floor(num / 1000);
- pos++;
- }
- return str;
- }
- function numberToOrdinal(num, plural) {
- if (num === 1) {
- return plural ? 'hel' : 'hele';
- }
- if (num === 2) {
- return plural ? 'halv' : 'halve';
- }
- return wordOrdinal(num) + (plural ? 'dele' : 'del');
- }
- function wordOrdinal(num) {
- if (num % 100) {
- return numberToWords(num, true);
- }
- const ordinal = numberToWords(num);
- return ordinal.match(/e$/) ? ordinal : ordinal + 'e';
- }
- function numericOrdinal(num) {
- return num.toString() + '.';
- }
- exports.NUMBERS = (0, messages_js_1.NUMBERS)({
- wordOrdinal: wordOrdinal,
- numericOrdinal: numericOrdinal,
- numberToWords: numberToWords,
- numberToOrdinal: numberToOrdinal
- });
|