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-utils-prem

v1.0.3

Published

A comprehensive collection of JavaScript utility functions designed to simplify common tasks in string manipulation and array operations. Ideal for enhancing productivity and reducing repetitive code in your projects.

Downloads

21

Readme

js-utils-prem

A comprehensive collection of JavaScript utility functions designed to simplify common tasks in string manipulation and array operations. Ideal for enhancing productivity and reducing repetitive code in your projects.

Features

  • String Utilities: Functions for manipulating and analyzing strings.
  • Array Utilities: Functions for working with arrays, including operations like shuffling, chunking, and flattening.

Installation

You can install the package using npm:

npm install js-utils-prem

Usage
To use the utilities, import the functions you need:

```javascript
import {
    reverseString,
    capitalizeFirstLetter,
    toCamelCase,
    countWords,
    isPalindrome,
    randomString,
    toTitleCase,
    uniqueArray,
    shuffleArray,
    maxArray,
    minArray,
    removeDuplicates,
    chunkArray,
    flattenArray,
    extractEmailDomain,
    averageArray,
    medianArray,
    intersectArrays,
    removeWhitespace,
    countOccurrences
} from 'js-utils-prem';

String Utilities

  • Reverses the given string reverseString(str: string): string
reverseString('hello'); // 'olleh'
  • Capitalizes the first letter of a string capitalizeFirstLetter(str: string): string
capitalizeFirstLetter('hello'); // 'Hello'
  • Converts a string to camelCase toCamelCase(str: string): string
toCamelCase('hello_world'); // 'helloWorld'
  • Counts the number of words in a string countWords(str: string): number
countWords('hello world'); // 2
  • Checks if a string is a palindrome isPalindrome(str: string): boolean
isPalindrome('racecar'); // true
  • Generates a random string of a given length randomString(length: number): string
randomString(8); // 'aBcDeFgH' (example output; actual output may vary)
  • Converts a string to title case toTitleCase(str: string): string
toTitleCase('hello world'); // 'Hello World'
  • Extracts the domain from an email address extractEmailDomain(email: string): string | null
extractEmailDomain('[email protected]'); // 'example.com'

Array Utilities

  • Finds unique elements in an array uniqueArray(arr: any[]): any[]
uniqueArray([1, 2, 2, 3]); // [1, 2, 3]
  • Shuffles an array shuffleArray(arr: any[]): any[]
shuffleArray([1, 2, 3]); // [2, 3, 1] (example output; actual output may vary)
  • Finds the maximum value in an array maxArray(arr: number[]): number
maxArray([1, 2, 3]); // 3
  • Finds the minimum value in an array minArray(arr: number[]): number
minArray([1, 2, 3]); // 1
  • Removes duplicates from an array removeDuplicates(arr: any[]): any[]
removeDuplicates([1, 1, 2, 3]); // [1, 2, 3]
  • Chunks an array into smaller arrays of a specified size chunkArray(arr: any[], size: number): any[][]
chunkArray([1, 2, 3, 4], 2); // [[1, 2], [3, 4]]
  • Flattens a nested array flattenArray(arr: any[]): any[]
flattenArray([1, [2, [3, [4]]]]); // [1, 2, 3, 4]

Contributing

Contributions are welcome! Please review the contributing guidelines for details on how to contribute.

Contact

For any questions or suggestions, please open an issue or contact the author at [email protected].