Bijoujs / Bijou.js

Bijou.js: Useful JavaScript snippets in one simple library
https://bijou.js.org
GNU General Public License v3.0
32 stars 8 forks source link

[Feature request] $_.capitalize should only change first letter, and there should be a new function that converts a string to title case. #115

Closed CubeyTheCube closed 3 years ago

CubeyTheCube commented 3 years ago

$.capitalize should just capitalize the first letter of a string, and there should be a new function called $\.titleCase that converts a whole string to title case, like this:

/**
 * Converts a string to title case
 * @memberOf bijou
 * @function
 * @param {String} str The string to convert to title case.
 * @example
 * _$.titleCase("hello world");//Returns "Hello World"
 * @returns {String} The string in title case.
 */
export let titleCase = (str) =>
    str.toLowerCase().split(" ").map((word, index) => 
    ["at", "by", "for", "in", "of", "off", "on", "out", "to", "up", "as", "if", "but", "per", "via", "for", "and", "nor", "but", "or", "yet", "so", "the", "a", "an"].includes(word) && index != 0 ? word : String.fromCodePoint(word.codePointAt(0)).toUpperCase() + word.slice(word.codePointAt(0) > 0xFFFF ? 2 : 1))
    .join(" ");
github-actions[bot] commented 3 years ago

Hi there! Welcome to Bijou.js! We appreciate you contributing to this project! Someone will look over your issue shortly! In the meantime you can take a look at our website to learn more about this project! This message is automated

CubeyTheCube commented 3 years ago

Hi there! Welcome to Bijou.js! We appreciate you contributing to this project! Someone will look over your issue shortly! In the meantime you can take a look at our website to learn more about this project! This message is automated

You know, I looked in my bedroom, I looked in my kitchen, I looked in my backyard, I looked in my school, and I looked in my refrigerator, but I couldn't find a single person who asked!

ghost commented 3 years ago

Hi there! Welcome to Bijou.js! We appreciate you contributing to this project! Someone will look over your issue shortly! In the meantime you can take a look at our website to learn more about this project! This message is automated

You know, I looked in my bedroom, I looked in my kitchen, I looked in my backyard, I looked in my school, and I looked in my refrigerator, but I couldn't find a single person who asked!

Look in the sky, I bet maybe the CIA or mars rover knows who asked