@bodar/totallylazy
Advanced tools
Comparing version 0.433.276 to 0.434.277
@@ -22,3 +22,8 @@ "use strict"; | ||
{ iso: 'NPR', symbol: 'Re' }, | ||
{ iso: 'MZN', symbol: 'MT' }, | ||
{ iso: 'MZN', symbol: 'MTn' }, | ||
{ iso: 'AED', symbol: 'د.إ' }, | ||
{ iso: 'AED', symbol: 'DH' }, | ||
{ iso: 'AED', symbol: 'Dhs' }, | ||
]; | ||
//# sourceMappingURL=currencies-def.js.map |
@@ -338,3 +338,4 @@ "use strict"; | ||
"symbols": [ | ||
"RD$" | ||
"RD$", | ||
"$" | ||
] | ||
@@ -692,3 +693,4 @@ }, | ||
"symbols": [ | ||
"MT" | ||
"MT", | ||
"MTn" | ||
] | ||
@@ -996,3 +998,5 @@ }, | ||
"symbols": [ | ||
"DH" | ||
"DH", | ||
"د.إ", | ||
"Dhs" | ||
] | ||
@@ -1007,3 +1011,4 @@ }, | ||
"symbols": [ | ||
"$U" | ||
"$U", | ||
"$" | ||
] | ||
@@ -1010,0 +1015,0 @@ }, |
@@ -51,2 +51,3 @@ "use strict"; | ||
'DM': 'XCD', | ||
'DO': 'DOP', | ||
'EC': 'USD', | ||
@@ -77,2 +78,3 @@ 'FM': 'USD', | ||
'US': 'USD', | ||
'UY': 'UYU', | ||
'VC': 'XCD', | ||
@@ -79,0 +81,0 @@ 'ZW': 'USD', |
{ | ||
"name": "@bodar/totallylazy", | ||
"version": "0.433.276", | ||
"version": "0.434.277", | ||
"description": "Totallylazy", | ||
@@ -5,0 +5,0 @@ "repository": "git@github.com:bodar/totallylazy.js.git", |
@@ -31,2 +31,6 @@ import { NamedMatch, NamedRegExp } from "./characters"; | ||
} | ||
export declare class IdentityParser implements Parser<string> { | ||
parse(value: string): string; | ||
parseAll(value: string): string[]; | ||
} | ||
export interface Datum<V> { | ||
@@ -33,0 +37,0 @@ name: string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.numberOf = exports.numberParser = exports.NumberParser = exports.separatorsOf = exports.mapIgnoreError = exports.numberPattern = exports.Spaces = exports.digits = exports.numberFormatter = exports.Numerals = exports.atBoundaryOnly = exports.boundaryDelimiters = exports.CachingParser = exports.all = exports.AllParser = exports.parsers = exports.or = exports.OrParser = exports.infer = exports.prefer = exports.uniqueMatch = exports.DatumLookup = exports.mappingParser = exports.MappingParser = exports.preProcess = exports.PreProcessor = exports.namedRegexParser = exports.NamedRegexParser = void 0; | ||
exports.numberOf = exports.numberParser = exports.NumberParser = exports.separatorsOf = exports.mapIgnoreError = exports.numberPattern = exports.Spaces = exports.digits = exports.numberFormatter = exports.Numerals = exports.atBoundaryOnly = exports.boundaryDelimiters = exports.CachingParser = exports.all = exports.AllParser = exports.parsers = exports.or = exports.OrParser = exports.infer = exports.prefer = exports.uniqueMatch = exports.DatumLookup = exports.IdentityParser = exports.mappingParser = exports.MappingParser = exports.preProcess = exports.PreProcessor = exports.namedRegexParser = exports.NamedRegexParser = void 0; | ||
const tslib_1 = require("tslib"); | ||
@@ -75,2 +75,11 @@ const characters_1 = require("./characters"); | ||
exports.mappingParser = mappingParser; | ||
class IdentityParser { | ||
parse(value) { | ||
return value; | ||
} | ||
parseAll(value) { | ||
return [value]; | ||
} | ||
} | ||
exports.IdentityParser = IdentityParser; | ||
class DatumLookup { | ||
@@ -77,0 +86,0 @@ constructor(data, comparator = trie_1.DEFAULT_COMPARATOR) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
436299
6390