
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.