CoastalCommitsPastes/server/node_modules/cldrjs/dist/.build/supplemental.js

17 lines
266 B
JavaScript
Raw Normal View History

2022-03-06 19:46:59 -05:00
var initSuper = Cldr.prototype.init;
/**
* .init() automatically ran on construction.
*
* Overload .init().
*/
Cldr.prototype.init = function() {
initSuper.apply( this, arguments );
this.supplemental = supplementalMain( this );
};
return Cldr;