|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
867 bytes
|
| Line | |
|---|
| 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 | ```
|
|---|
| 12 | npm install lower-case --save
|
|---|
| 13 | ```
|
|---|
| 14 |
|
|---|
| 15 | ## Usage
|
|---|
| 16 |
|
|---|
| 17 | ```js
|
|---|
| 18 | import { lowerCase, localeLowerCase } from "lower-case";
|
|---|
| 19 |
|
|---|
| 20 | lowerCase("string"); //=> "string"
|
|---|
| 21 | lowerCase("PascalCase"); //=> "pascalcase"
|
|---|
| 22 |
|
|---|
| 23 | localeLowerCase("STRING", "tr"); //=> "strıng"
|
|---|
| 24 | ```
|
|---|
| 25 |
|
|---|
| 26 | ## License
|
|---|
| 27 |
|
|---|
| 28 | MIT
|
|---|
| 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.