prvi
This commit is contained in:
183
EveryThing/wwwroot/vendor/libs/globalize/dist/globalize-runtime/currency.js
vendored
Normal file
183
EveryThing/wwwroot/vendor/libs/globalize/dist/globalize-runtime/currency.js
vendored
Normal file
@@ -0,0 +1,183 @@
|
||||
/**
|
||||
* Globalize Runtime v1.7.0
|
||||
*
|
||||
* https://github.com/globalizejs/globalize
|
||||
*
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
* Released under the MIT license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: 2021-08-02T11:53Z
|
||||
*/
|
||||
/*!
|
||||
* Globalize Runtime v1.7.0 2021-08-02T11:53Z Released under the MIT license
|
||||
* http://git.io/TrdQbw
|
||||
*/
|
||||
(function( root, factory ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
// UMD returnExports
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD
|
||||
define([
|
||||
"../globalize-runtime",
|
||||
"./number"
|
||||
], factory );
|
||||
} else if ( typeof exports === "object" ) {
|
||||
|
||||
// Node, CommonJS
|
||||
module.exports = factory(
|
||||
require( "../globalize-runtime" ),
|
||||
require( "./number" )
|
||||
);
|
||||
} else {
|
||||
|
||||
// Extend global
|
||||
factory( root.Globalize );
|
||||
}
|
||||
}(this, function( Globalize ) {
|
||||
|
||||
|
||||
|
||||
var formatMessageToParts = Globalize._formatMessageToParts,
|
||||
partsJoin = Globalize._partsJoin,
|
||||
partsPush = Globalize._partsPush,
|
||||
runtimeKey = Globalize._runtimeKey,
|
||||
validateParameterPresence = Globalize._validateParameterPresence,
|
||||
validateParameterTypeNumber = Globalize._validateParameterTypeNumber;
|
||||
|
||||
|
||||
var currencyFormatterFn = function( currencyToPartsFormatter ) {
|
||||
return function currencyFormatter( value ) {
|
||||
return partsJoin( currencyToPartsFormatter( value ));
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* nameFormat( formattedNumber, pluralForm, properties )
|
||||
*
|
||||
* Return the appropriate name form currency format.
|
||||
*/
|
||||
var currencyNameFormat = function( formattedNumber, pluralForm, properties ) {
|
||||
var displayName, unitPattern,
|
||||
parts = [],
|
||||
displayNames = properties.displayNames || {},
|
||||
unitPatterns = properties.unitPatterns;
|
||||
|
||||
displayName = displayNames[ "displayName-count-" + pluralForm ] ||
|
||||
displayNames[ "displayName-count-other" ] ||
|
||||
displayNames.displayName ||
|
||||
properties.currency;
|
||||
unitPattern = unitPatterns[ "unitPattern-count-" + pluralForm ] ||
|
||||
unitPatterns[ "unitPattern-count-other" ];
|
||||
|
||||
formatMessageToParts( unitPattern, [ formattedNumber, displayName ]).forEach(function( part ) {
|
||||
if ( part.type === "variable" && part.name === "0" ) {
|
||||
part.value.forEach(function( part ) {
|
||||
partsPush( parts, part.type, part.value );
|
||||
});
|
||||
} else if ( part.type === "variable" && part.name === "1" ) {
|
||||
partsPush( parts, "currency", part.value );
|
||||
} else {
|
||||
partsPush( parts, "literal", part.value );
|
||||
}
|
||||
});
|
||||
|
||||
return parts;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* symbolFormat( parts, symbol )
|
||||
*
|
||||
* Return the appropriate symbol/account form format.
|
||||
*/
|
||||
var currencySymbolFormat = function( parts, symbol ) {
|
||||
parts.forEach(function( part ) {
|
||||
if ( part.type === "currency" ) {
|
||||
part.value = symbol;
|
||||
}
|
||||
});
|
||||
return parts;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
var currencyToPartsFormatterFn = function( numberToPartsFormatter, pluralGenerator, properties ) {
|
||||
var fn;
|
||||
|
||||
// Return formatter when style is "name".
|
||||
if ( pluralGenerator && properties ) {
|
||||
fn = function currencyToPartsFormatter( value ) {
|
||||
validateParameterPresence( value, "value" );
|
||||
validateParameterTypeNumber( value, "value" );
|
||||
return currencyNameFormat(
|
||||
numberToPartsFormatter( value ),
|
||||
pluralGenerator( value ),
|
||||
properties
|
||||
);
|
||||
};
|
||||
|
||||
// Return formatter when style is "symbol", "accounting", or "code".
|
||||
} else {
|
||||
fn = function currencyToPartsFormatter( value ) {
|
||||
|
||||
// 1: Reusing pluralGenerator argument, but in this case it is actually `symbol`
|
||||
return currencySymbolFormat( numberToPartsFormatter( value ), pluralGenerator /* 1 */ );
|
||||
};
|
||||
}
|
||||
|
||||
return fn;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
Globalize._currencyFormatterFn = currencyFormatterFn;
|
||||
Globalize._currencyNameFormat = currencyNameFormat;
|
||||
Globalize._currencyToPartsFormatterFn = currencyToPartsFormatterFn;
|
||||
|
||||
Globalize.currencyFormatter =
|
||||
Globalize.prototype.currencyFormatter = function( currency, options ) {
|
||||
options = options || {};
|
||||
return Globalize[ runtimeKey( "currencyFormatter", this._locale, [ currency, options ] ) ];
|
||||
};
|
||||
|
||||
Globalize.currencyToPartsFormatter =
|
||||
Globalize.prototype.currencyToPartsFormatter = function( currency, options ) {
|
||||
options = options || {};
|
||||
return Globalize[
|
||||
runtimeKey( "currencyToPartsFormatter", this._locale, [ currency, options ] )
|
||||
];
|
||||
};
|
||||
|
||||
Globalize.formatCurrency =
|
||||
Globalize.prototype.formatCurrency = function( value, currency, options ) {
|
||||
validateParameterPresence( value, "value" );
|
||||
validateParameterTypeNumber( value, "value" );
|
||||
|
||||
return this.currencyFormatter( currency, options )( value );
|
||||
};
|
||||
|
||||
Globalize.formatCurrencyToParts =
|
||||
Globalize.prototype.formatCurrencyToParts = function( value, currency, options ) {
|
||||
validateParameterPresence( value, "value" );
|
||||
validateParameterTypeNumber( value, "value" );
|
||||
|
||||
return this.currencyToPartsFormatter( currency, options )( value );
|
||||
};
|
||||
|
||||
return Globalize;
|
||||
|
||||
|
||||
|
||||
|
||||
}));
|
||||
Reference in New Issue
Block a user