![npm version](https://img.shields.io/npm/v/strinify.svg)
![npm downloads](https://img.shields.io/npm/dt/strinify.svg)
NPM Package
strinify npm package
The strinify npm package provides string manipulation functions designed to enhance JavaScript's built-in string capabilities. It provides a set of intuitive functions that allow you to easily transform and manipulate strings in various ways.
Installation
To start using strinify in your JavaScript projects, you can install it via npm:
npm install strinify
Usage
Once you have installed strinify, you can import the desired functions into your JavaScript code:
const stringJS = require('strinify');
OR
const {
capitalizeString,
allCaps,
capitalizeWords,
capitalizeHeadline,
removeExtraSpaces,
kebobCase,
snakeCase,
camelCase,
shift,
makeHashTag,
isEmpty
} = require('strinify');
Features
strinify offers a wide range of features that empower you to work with strings more effectively:
-
capitalize(string)
Makes the first character of a given string uppercase.
-
allCaps(string)
Makes all characters in the string uppercase.
-
capitalizeWords(string)
Makes the first character of each word in the string uppercase.
-
capitalizeHeadline(string)
Capitalizes all words in the string except certain words unless they are the first word.
-
removeExtraSpaces(string)
Removes extra spaces from the beginning, end, and middle of the string.
-
kebobCase(string)
Converts the string to kebob case by removing spaces and replacing them with hyphens.
-
snakeCase(string)
Converts the string to snake case by removing spaces and replacing them with underscores.
-
camelCase(string)
Converts the string to camel case.
-
shift(string)
Shifts the first character of the string to the end.
-
makeHashTag(string)
Converts the given string to a list of hash tags.
-
isEmpty(string)
Returns true if the string is empty or contains only whitespace.
Functions and Examples
strinify provides the following functions for string manipulation:
capitalize(string)
Converts the first character of a string to uppercase.
Example:
const { capitalize } = require('strinify');
console.log(capitalize('hello world'));
console.log(capitalize('world'));
allCaps(string)
Makes all characters in the string uppercase.
Example:
const { allCaps } = require('strinify');
console.log(allCaps('hello world'));
capitalizeWords(string)
Makes the first character of each word in the string uppercase.
Example:
const { capitalizeWords } = require('strinify');
console.log(capitalizeWords('hello world'));
- capitalizeHeadline(string)
Capitalizes all of the words except the words: the, in, a, an, and, but, for, at, by, from unless one of these words is the first word of the string!
Example:
const { capitalizeHeadline } = require('strinify');
console.log(capitalizeHeadline('for welcome to the world but'));
Removes all spaces from the beginning and end of a String along with any extra spaces in the middle. If more than one space appears in the middle of a string it is replaced by a single space.
Example:
const { removeExtraSpaces } = require('strinify');
console.log(removeExtraSpaces('hello world'));
kebobCase(string)
Converts the string to kebob case by removing spaces and replacing them with hyphens and makes all characters lowercase.
Example:
const { kebobCase } = require('strinify');
console.log(kebobCase('Hello World'));
console.log(kebobCase('Some String, Here'));
snakeCase(string)
Converts the string to snake case by removing spaces and replacing them with underscores and makes all characters lowercase.
Example:
const { snakeCase } = require('strinify');
console.log(snakeCase('Hello World'));
camelCase(string)
Lowercases the first character of the first word. Then uppercases the first character of all other words, and removes all spaces.
Example:
const { camelCase } = require('strinify');
console.log(camelCase('Hello World'));
shift(string)
Shifts the first character of the string to the end.
Example:
const { shift } = require('strinify');
console.log(shift('Hello World'));
makeHashTag(string)
This function should convert the given string to a hash tag. A hash tag begins with # and no spaces. Each word in the phrase begins with an uppercase letter.
If the given string has more than three words, it picks the three longest and make the hash tag from those.
Example:
const { makeHashTag } = require('strinify');
console.log(makeHashTag('Amazing bongo drums for sale'));
isEmpty(string)
Returns true if the string is empty or contains only whitespace.
Example:
const { isEmpty } = require('strinify');
console.log(isEmpty('Hello World'));
console.log(isEmpty(' '));
Contributing
I welcome contributions from the community to improve and expand the functionality of strinify. If you have any suggestions, bug reports, or feature requests, please don't hesitate to open an issue or submit a pull request on the GitHub repository.
- The package is intended to be used for educational purposes only.