
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
sillystrings
Advanced tools
Silly String is a Javascript library for manipulating strings.
Takes in a string and returns it with the first letter capitalized.
Example: hello world -> Hello world
Takes in a string and returns the entire string in uppercase.
Example: hello world -> HELLO WORLD
Takes in a string and returns it with the first letter of each word capitalized.
Example: hello world -> Hello World
Takes in a string and removes all the extra spaces at the beginning, end, and between words and returns it with standard spacing.
Example: " Hello world! " -> "Hello world!"
Takes in a string, removes all extra spaces, and replaces the single space between words with a hyphen, returning the string in kebab case.
Example: " Hello world " -> "hello-world"
Takes in a string, removes all extra spaces, and replaces the single space between words with an underscore, returning the string in snake case.
Example: " what the heck " -> "what_the_heck"
Takes in a string, removes all spacing between words, makes the first word lowercase and capitalizes the first letter of every subsequent word.
Example: Camel Case -> camelCase
Takes in a string and an integer that sets the number of characters to shift. That number of characters are removed from the beginning of the string and replaced at the end.
Example:shift('foobar', 3) -> 'barfoo'
Takes in a string and returns an array of each of the words in the string in hashtag style, with a hashtag symbol followed by lowercase word.
Example:
input: "Amazing bongo drums for sale" output: ['#amazing', '#bongo', '#drums', '#for', '#sale']
Takes in a string and returns true if the string consists only of insignificant characters (spaces, tabs, linebreaks, carriage returns, or null) or returns false if there is a signficant character..
Example:
Input: "Abc def" Output: isEmpty("Abc def") // false
✓ shift() returns first letter capital ✓ makeHashTag() returns first letter capital ✓ isEmpty() function returns first letter capital
FAQs
Silly String is a Javascript library for manipulating strings.
The npm package sillystrings receives a total of 0 weekly downloads. As such, sillystrings popularity was classified as not popular.
We found that sillystrings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.