https://github.com/c0bra/readable-name
Turn strings into readable names or titles with JS
https://github.com/c0bra/readable-name
javascript names readable string titles
Last synced: 8 months ago
JSON representation
Turn strings into readable names or titles with JS
- Host: GitHub
- URL: https://github.com/c0bra/readable-name
- Owner: c0bra
- Created: 2017-02-23T18:15:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-24T17:11:55.000Z (about 9 years ago)
- Last Synced: 2025-03-14T15:16:15.946Z (about 1 year ago)
- Topics: javascript, names, readable, string, titles
- Language: JavaScript
- Homepage:
- Size: 86.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# readable-name [](https://travis-ci.org/c0bra/readable-name) [](https://coveralls.io/github/c0bra/readable-name?branch=master) [](https://dependencyci.com/github/c0bra/readable-name) [](https://github.com/sindresorhus/xo)
> Turn strings into readable names
>
> "personFirstName" becomes "Person First Name"
>
> Handles weird characters, different casings, most of what you can throw at it
# Install
npm install --save readable-name
# Usage
```javascript
const readableName = require('readableName');
let readable = readableName('someConcatenatedTitle');
console.log(readable);
// Some Concatenated Title
```
# License
ISC