![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | node_modules/ | 2 years ago | - | |
![]() | LICENSE | 9 years ago | 1.1K | |
![]() | README.md | 9 years ago | 1.3K | d7c1522 post receive test [كارل مبارك] |
![]() | package.json | 2 years ago | 1.8K | |
![]() | path-case.d.ts | 9 years ago | 88 | |
![]() | path-case.js | 9 years ago | 224 |
Path 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.
npm install path-case --save
var pathCase = require('path-case')
pathCase('string') //=> "string"
pathCase('camelCase') //=> "camel/case"
pathCase('sentence case') //=> "sentence/case"
pathCase('MY STRING', 'tr') //=> "my/strıng"
Includes a TypeScript definition.
MIT