@frogpond/titlecase
TypeScript icon, indicating that this package has built-in type declarations

2.0.4 • Public • Published

David Gouch's String#toTitleCase() for Node.js

This is a fork of @rvagg's fork of David Gouch's excellent String#toTitleCase() method inspired by John Gruber's post on the topic

I've removed the default export, forcing you to choose between toTitleCase and toLaxTitleCase.

rvagg's README

I've simply taken it off the String prototype and exported it from a simple module.

let { toTitleCase } = require("titlecase")

console.log(toTitleCase("foo bar baz"))

See Gouch's page with inline converter. Also see this excellent table of test case results for different converters.

In addition, I've added a more comprehensive list of words to not capitalise that includes articles, prepositions and conjunctions (see source files for lists), I'm calling this "lax title case", use it like so:

let { toLaxTitleCase } = require("titlecase")

console.log(toLaxTitleCase("foo bar baz"))

Original README

To Title Case for JavaScript

Instructions: Include the dist/index.js script and use the toTitleCase() function on the string you want converted.

History

2.1 / 2013-11-03

  • Acknowledge characters outside of US-ASCII
  • Fix bug related to hyphenated small words
  • Replace baby's first testing script with the QUnit framework

2.0.1 / 2012-01-06

  • Fixed IE 7 breakage introduced in 2.0. Don't treat strings like character arrays.

2.0 / 2012-01-06

  • 15% less code and 35% easier to understand.
  • Small words list moved to variable for easy modification.
  • Test titles rewritten to focus on a single issue per title.
  • More braces to make style guides and JSLint happier.

License

Copyright © 2008–2013 David Gouch. Licensed under the MIT License.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies (0)

    Dev Dependencies (13)

    Package Sidebar

    Install

    npm i @frogpond/titlecase

    Weekly Downloads

    5

    Version

    2.0.4

    License

    MIT

    Unpacked Size

    22.4 kB

    Total Files

    16

    Last publish

    Collaborators

    • hawkrives
    • drewvolz
    • krstfrye