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

js-awesome-utils

v1.5.0

Published

A javascript util bundle for all your daily needs

Downloads

275

Readme

npm

Js Awesome Utils Documentation

A lightweight util store for all your javascript needs.

Introduction

The Validation Utils package provides a set of functions to perform common data validation tasks. It includes functions for validating email addresses, passwords, URLs, and phone numbers. Additionally, it offers a utility function for removing duplicates from an array.

Installation

To install the Validation Utils package, use the following npm command:

npm install js-awesome-utils

Usage

1. isValidEmail

  • Use this function to check if an email address is valid.
import { isValidEmail } from "js-awesome-utils";

const email = "[email protected]";
const isEmailValid = isValidEmail(email);
console.log(isEmailValid); // Output: true

2. isStrongPassword

  • Verify if a password is strong by checking for minimum length and the inclusion of uppercase, lowercase, digit, and special characters.
  • Password should be at least 8 characters long and contain at least one uppercase, one lowercase, one digit, and one special character
import { isStrongPassword } from "js-awesome-utils";

const password = "StrongP@ssw0rd";
const isPasswordStrong = isStrongPassword(password);
console.log(isPasswordStrong); // Output: true

3. isValidUrl

  • Check if a given URL is valid using a basic regular expression.
import { isValidUrl } from "js-awesome-utils";

const url = "https://www.example.com";
const isUrlValid = isValidUrl(url);
console.log(isUrlValid); // Output: true

4. isValidPhoneNumber

  • Validate a phone number using a basic regular expression.
import { isValidPhoneNumber } from "js-awesome-utils";

const phoneNumber = "1234567890";
const isPhoneNumberValid = isValidPhoneNumber(phoneNumber);
console.log(isPhoneNumberValid); // Output: true

5. removeDuplicates

  • Remove duplicates from an array while preserving the order of the unique elements.
import { removeDuplicates } from "js-awesome-utils";

const arrayWithDuplicates = [1, 2, 3, 1, 2, 4];
const uniqueArray = removeDuplicates(arrayWithDuplicates);
console.log(uniqueArray); // Output: [1, 2, 3, 4]

6. generateRandomString

  • Parameterslength (number): The desired length of the random string to be generated.
  • Return Value: A string containing random characters with a length equal to the specified length parameter.
import { generateRandomString } from "js-awesome-utils";

const randomString = generateRandomString(12);
console.log(randomString);

7. formatNumber(num: number): string

  • Formats the provided number by inserting commas as thousand separators.

num (number): The number to be formatted. Returns: A string representing the formatted number with commas as thousand separators.

import { formatNumber } from "js-awesome-utils";

formatNumber(1000); // Output: "1,000"
formatNumber(10000); // Output: "10,000"
formatNumber(100000); // Output: "100,000"

Type Definitions

Primitive

The Primitive type represents basic data types like string, number, boolean, null, and undefined.

removeDuplicates

The removeDuplicates function accepts an array of type T and returns an array with duplicate elements removed.

8. objectsAreEqual

/**
 * Checks if two objects are equal by comparing their properties and values.
 *
 * @param obj1 The first object to compare.
 * @param obj2 The second object to compare.
 * @returns Returns `true` if the objects are equal, `false` otherwise.
 */
function objectsAreEqual(obj1: AnyObject, obj2: AnyObject): boolean {
  // Implementation details...
}

Parameters:

obj1: The first object to compare. obj2: The second object to compare. Returns: Returns true if the objects are equal (i.e., they have the same properties with the same values), false otherwise. Example Usage:

const obj1 = { a: 1, b: 2, c: 3 };
const obj2 = { a: 1, b: 2, c: 3 };
const obj3 = { a: 1, b: 2, c: 4 };

console.log(objectsAreEqual(obj1, obj2)); // true
console.log(objectsAreEqual(obj1, obj3)); // false

Notes:

This function performs a deep comparison of objects, checking each property and its value recursively. The function returns true if both objects are null or undefined. If the objects have different numbers of properties, they are considered unequal. Properties with undefined values are considered equal to non-existent properties. This function provides type safety for TypeScript projects. It's particularly useful for comparing configurations, state objects, or any other plain JavaScript objects.

9. Remove Spaces

/**
 * Removes all spaces from a given string.
 * @param input The input string from which spaces are to be removed.
 * @returns A new string with all spaces removed.
 */
function removeSpaces(input: string): string {
  // Use regular expression to replace all spaces with an empty string
  return input.replace(/\s/g, "");
}

Function Description:

  • Function Name: removeSpaces Description: This function removes all spaces from a given string.
  • Parameters: input (string): The input string from which spaces are to be removed.
  • Returns: A new string with all spaces removed.
const stringWithSpaces = "This is a string with spaces";
const stringWithoutSpaces = removeSpaces(stringWithSpaces);
console.log(stringWithoutSpaces); // Output: "Thisisastringwithspaces"

Note:

This function utilizes the replace() method with a regular expression / /g to match all occurrences of spaces (\s) globally (g) and replaces them with an empty string, effectively removing all spaces from the input string.

10. isPalindrome

Function Description:

Determines whether a given string is a palindrome. A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward, ignoring spaces, punctuation, and capitalization.

function isPalindrome(str: string): boolean

Parameters:

str: The input string to be checked for palindrome property. Returns: boolean: true if the input string is a palindrome, false otherwise.

Example:

const str1 = "A man, a plan, a canal, Panama!";
console.log(isPalindrome(str1)); // Output: true

const str2 = "Hello, world!";
console.log(isPalindrome(str2)); // Output: false

Explanation:

  • In the first example, the input string "A man, a plan, a canal, Panama!" is a palindrome, as it reads the same forward and backward after removing non-alphanumeric characters and ignoring case.
  • In the second example, the input string "Hello, world!" is not a palindrome.

Notes:

This function ignores spaces, punctuation, and capitalization when determining if a string is a palindrome. Empty strings are considered palindromes.

Tests

npm run test

Contributing

If you encounter issues or have suggestions for improvements, please open an issue on GitHub.

License

This package is licensed under the MIT License.