source: imaps-frontend/node_modules/lower-case/README.md@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 867 bytes
RevLine 
[79a0317]1# Lower Case
2
3[![NPM version][npm-image]][npm-url]
4[![NPM downloads][downloads-image]][downloads-url]
5[![Bundle size][bundlephobia-image]][bundlephobia-url]
6
7> Transforms the string to lower case.
8
9## Installation
10
11```
12npm install lower-case --save
13```
14
15## Usage
16
17```js
18import { lowerCase, localeLowerCase } from "lower-case";
19
20lowerCase("string"); //=> "string"
21lowerCase("PascalCase"); //=> "pascalcase"
22
23localeLowerCase("STRING", "tr"); //=> "strıng"
24```
25
26## License
27
28MIT
29
30[npm-image]: https://img.shields.io/npm/v/lower-case.svg?style=flat
31[npm-url]: https://npmjs.org/package/lower-case
32[downloads-image]: https://img.shields.io/npm/dm/lower-case.svg?style=flat
33[downloads-url]: https://npmjs.org/package/lower-case
34[bundlephobia-image]: https://img.shields.io/bundlephobia/minzip/lower-case.svg
35[bundlephobia-url]: https://bundlephobia.com/result?p=lower-case
Note: See TracBrowser for help on using the repository browser.