Sha256: 4f93dcce82d75b224f748b23debd5926451d4659fc12cbfced54a516fe89b2d9
Contents?: true
Size: 807 Bytes
Versions: 16
Compression:
Stored size: 807 Bytes
Contents
/*! * numeral.js language configuration * language : polish (pl) * author : Dominik Bulaj : https://github.com/dominikbulaj */ (function () { var language = { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'tys.', million: 'mln', billion: 'mld', trillion: 'bln' }, ordinal: function (number) { return '.'; }, currency: { symbol: 'PLN' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('pl', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems