web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
867 B

  1. # Lower 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 lower case.
  6. ## Installation
  7. ```
  8. npm install lower-case --save
  9. ```
  10. ## Usage
  11. ```js
  12. import { lowerCase, localeLowerCase } from "lower-case";
  13. lowerCase("string"); //=> "string"
  14. lowerCase("PascalCase"); //=> "pascalcase"
  15. localeLowerCase("STRING", "tr"); //=> "strıng"
  16. ```
  17. ## License
  18. MIT
  19. [npm-image]: https://img.shields.io/npm/v/lower-case.svg?style=flat
  20. [npm-url]: https://npmjs.org/package/lower-case
  21. [downloads-image]: https://img.shields.io/npm/dm/lower-case.svg?style=flat
  22. [downloads-url]: https://npmjs.org/package/lower-case
  23. [bundlephobia-image]: https://img.shields.io/bundlephobia/minzip/lower-case.svg
  24. [bundlephobia-url]: https://bundlephobia.com/result?p=lower-case