npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

string-it-up

v1.0.6

Published

Capitalize your strings in whichever way your heart chooses

Downloads

18

Readme

string-it-up


npm library used to simplify your life when it comes to using strings.

Installation (is simple)

npm i string-it-up


Using the lib

capitalize()

makes the first character of a given string uppercase.

capitalize("moose is the best");
// returns 'Moose is the best'

allCaps()

makes all characters uppercase. (this is the same as str.toUpperCase())

(think screaming kids)

allCaps("and he loves to play fetch");
// returns 'AND HE LOVES TO PLAY FETCH'

capitalizeWords()

makes the first character of each word uppercase. Each word is separated by a space.

capitalizeWords("all day in the park");
// returns 'All Day In The Park'

capitalizeHeadline()

capitalizes all of the words in a string

EXCLUDING (and will lowercase them in case you didn't)

'and', 'an', 'a', 'at', 'but', 'by', 'for', 'in', 'the', and 'is'

capitalizeHeadline("is What Is this is is THE IN whichery?");
// returns 'Is What is This is is the in Whichery?'

removeExtraSpaces()

Removes all spaces from the beginning and end of a String along with any extra spaces in the middle.

Removes any empty characters more than one space

capitalizeWords("    my    doggo moose IS THE BOMB    jigidy     ");
// returns 'my doggo moose IS THE BOMB jigidy'

kebobCase()

Removes extra spaces and replaces spaces with the hyphen "-"

makes all characters lowercase.

kebobCase("This-is-test and who knows if itll WORk");
// returns 'this-is-test-and-who-knows-if-itll-work'

snakeCase()

Removes extra spaces and replaces spaces with the underscore "_"

makes all characters lowercase.

snakeCase("  and - remove the other 23@@#characters!");
// returns 'and_remove_the_other_23characters'

camelCase()

Lowercases the first character of the first word.

Then uppercases the first character of all other words, and removes all spaces.

camelCase("This is moose BOBBY alex MAXIMUSIMUS");
// returns 'thisIsMooseBobbyAlexMaximusimus'

shift()

this method will take the first character of a string and move to the end of a string:

with a second int input, specify how many character to shift

shift("what is going on here?");
// hat is going on here?w'

shift("what is going on here?", 4);
// returns ' is going on here?what'

makeHashTag()

This function converts the given string to a hashtag #Yolo

if string is three words or less, all words will be returned as hashtags

output is a list of all terms with an uppercase letter and beginning with '#'

makeHashTag("this is a bambooozeled mooose MAXIMILIUS");
// returns [ '#Bambooozeled', '#MAXIMILIUS', '#Mooose' ]

makeHashTag("fun times");
// returns [ '#times', '#fun' ]

isEmpty()

Returns true if the given string is empty or contains only whitespace

Return flase if the given string is not empty

isEmpty("    \n\r\t     ");
// returns true

isEmpty("abc def");
// returns false