版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425262728293031323334
  1. # Upper Case
  2. [![NPM version][npm-image]][npm-url]
  3. [![NPM downloads][downloads-image]][downloads-url]
  4. [![Bundle size][bundlephobia-image]][bundlephobia-url]
  5. > Transforms the string to upper case.
  6. ## Installation
  7. ```
  8. npm install upper-case --save
  9. ```
  10. ## Usage
  11. ```js
  12. import { upperCase, localeUpperCase } from "upper-case";
  13. upperCase("string"); //=> "STRING"
  14. localeUpperCase("string", "tr"); //=> "STRİNG"
  15. ```
  16. ## License
  17. MIT
  18. [npm-image]: https://img.shields.io/npm/v/upper-case.svg?style=flat
  19. [npm-url]: https://npmjs.org/package/upper-case
  20. [downloads-image]: https://img.shields.io/npm/dm/upper-case.svg?style=flat
  21. [downloads-url]: https://npmjs.org/package/upper-case
  22. [bundlephobia-image]: https://img.shields.io/bundlephobia/minzip/upper-case.svg
  23. [bundlephobia-url]: https://bundlephobia.com/result?p=upper-case