CoastalCommitsPastes/server/node_modules/cldrjs/dist/.build/supplemental.js
2022-03-06 16:46:59 -08:00

16 lines
266 B
JavaScript

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;