This commit is contained in:
David Štaleker
2025-07-18 05:33:16 +02:00
parent 401a367e5d
commit db0cc8d3de
14776 changed files with 9251484 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/

View File

@@ -0,0 +1,27 @@
/**
* CLDR JavaScript Library v@VERSION
* http://jquery.com/
*
* Copyright 2013 Rafael Xavier de Souza
* Released under the MIT license
* http://jquery.org/license
*
* Date: @DATE
*/
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/
(function( root, factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD.
// Node. CommonJS.
module.exports = factory();
} else {
// Global
root.Cldr = factory();
}
}( this, function() {

View File

@@ -0,0 +1,33 @@
/**
* CLDR JavaScript Library v@VERSION
* http://jquery.com/
*
* Copyright 2013 Rafael Xavier de Souza
* Released under the MIT license
* http://jquery.org/license
*
* Date: @DATE
*/
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD.
// Node. CommonJS.
module.exports = factory( require( "../cldr" ) );
} else {
// Global
factory( Cldr );
}
}(function( Cldr ) {
// Build optimization hack to avoid duplicating functions across modules.
var pathNormalize = Cldr._pathNormalize,
validatePresence = Cldr._validatePresence,
validateType = Cldr._validateType;

View File

@@ -0,0 +1,31 @@
/**
* CLDR JavaScript Library v@VERSION
* http://jquery.com/
*
* Copyright 2013 Rafael Xavier de Souza
* Released under the MIT license
* http://jquery.org/license
*
* Date: @DATE
*/
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD.
// Node. CommonJS.
module.exports = factory( require( "../cldr" ) );
} else {
// Global
factory( Cldr );
}
}(function( Cldr ) {
// Build optimization hack to avoid duplicating functions across modules.
var alwaysArray = Cldr._alwaysArray;

View File

@@ -0,0 +1,36 @@
/**
* CLDR JavaScript Library v@VERSION
* http://jquery.com/
*
* Copyright 2013 Rafael Xavier de Souza
* Released under the MIT license
* http://jquery.org/license
*
* Date: @DATE
*/
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD.
// Node. CommonJS.
module.exports = factory( require( "../cldr" ) );
} else {
// Global
factory( Cldr );
}
}(function( Cldr ) {
// Build optimization hack to avoid duplicating functions across modules.
var coreLoad = Cldr._coreLoad;
var jsonMerge = Cldr._jsonMerge;
var pathNormalize = Cldr._pathNormalize;
var resourceGet = Cldr._resourceGet;
var validatePresence = Cldr._validatePresence;
var validateTypePath = Cldr._validateTypePath;

View File

@@ -0,0 +1,22 @@
/**
* CLDR JavaScript Library v@VERSION
* http://jquery.com/
*
* Copyright 2013 Rafael Xavier de Souza
* Released under the MIT license
* http://jquery.org/license
*
* Date: @DATE
*/
/*!
* CLDR JavaScript Library v@VERSION @DATE MIT license © Rafael Xavier
* http://git.io/h4lmVg
*/
// Cldr
module.exports = require( "./cldr" );
// Extent Cldr with the following modules
require( "./cldr/event" );
require( "./cldr/supplemental" );
require( "./cldr/unresolved" );

View File

@@ -0,0 +1 @@
}));