hz-zhhq-web/node_modules/dot-case
zzyuan 304842bddc 前端提交2 2025-02-25 13:44:33 +08:00
..
LICENSE 前端提交2 2025-02-25 13:44:33 +08:00
README.md 前端提交2 2025-02-25 13:44:33 +08:00
dot-case.d.ts 前端提交2 2025-02-25 13:44:33 +08:00
dot-case.js 前端提交2 2025-02-25 13:44:33 +08:00
package.json 前端提交2 2025-02-25 13:44:33 +08:00

README.md

Dot Case

NPM version NPM downloads Build status Test coverage

Dot case a string.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

npm install dot-case --save

Usage

var dotCase = require('dot-case')

dotCase('string')        //=> "string"
dotCase('camelCase')     //=> "camel.case"
dotCase('sentence case') //=> "sentence.case"

dotCase('MY STRING', 'tr') //=> "my.strıng"

Typings

Includes a TypeScript definition.

License

MIT