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 🙏

© 2025 – Pkg Stats / Ryan Hefner

utils-friendly

v4.4.3

Published

Utils Function For Better Coding Life

Readme

UtilsPackage

UtilsPackage Logo

UtilsPackage is a collection of utility functions designed to simplify common tasks in your projects. Whether you're working with dates, arrays, strings, or objects, these functions will help you get the job done efficiently. Just enjoy the convenience and boost your productivity!

How to Use

You can use these utility functions in your projects by simply importing the UtilsPackage and calling the functions as needed.

Installation

To install UtilsPackage, you can use your package manager of choice:

npm install utils-package

# or

yarn add utils-package

Features

Date Time Related

Array Related

String Related

Object Related

Date Time Related

  • GetStartAndEndDateTime(fromDate, toDate) {#getstartandenddatetime}

    Get the start and end date and time between two given dates.

    Example:

    const { GetStartAndEndDateTime } = require("utils-package");
    
    const fromDate = "2021-01-01";
    const toDate = "2021-01-02";
    
    const { startDateTime, endDateTime } = GetStartAndEndDateTime(
      fromDate,
      toDate
    );
    
    console.log(startDateTime); // Output: 2021-01-01T00:00:00.000Z
    console.log(endDateTime); // Output: 2021-01-02T23:59:59.999Z
  • SecondsToTime(seconds)

    Convert the given seconds into a human-readable time format.

    Example:

    const { SecondsToTime } = require("utils-package");
    
    const seconds = 5000;
    
    const time = SecondsToTime(seconds);
    
    console.log(time); // Output: 1 hour, 23 minutes, 20 seconds
  • GetTimeDifference(fromDate, toDate)

    Calculate the time difference between two dates.

    Example:

    const { GetTimeDifference } = require("utils-package");
    
    const fromDate = "2021-01-01";
    const toDate = "2021-01-02";
    
    const timeDifference = GetTimeDifference(fromDate, toDate);
    
    console.log(timeDifference); // Output: { days: 1, hours: 0, minutes: 0, seconds: 0 }
  • GetTimeDifferenceInDays(fromDate, toDate)

    Get the number of days between two dates.

    Example:

    const { GetTimeDifferenceInDays } = require("utils-package");
    
    const fromDate = "2021-01-01";
    const toDate = "2021-01-03";
    
    const daysDifference = GetTimeDifferenceInDays(fromDate, toDate);
    
    console.log(daysDifference); // Output: 2
  • GetTimeDifferenceInHours(fromDate, toDate)

    Get the number of hours between two dates.

    Example:

    const { GetTimeDifferenceInHours } = require("utils-package");
    
    const fromDate = "2021-01-01T12:00:00";
    const toDate = "2021-01-02T12:00:00";
    
    const hoursDifference = GetTimeDifferenceInHours(fromDate, toDate);
    
    console.log(hoursDifference); // Output: 24
  • GetTimeDifferenceInMinutes(fromDate, toDate)

    Get the number of minutes between two dates.

    Example:

    const { GetTimeDifferenceInMinutes } = require("utils-package");
    
    const fromDate = "2021-01-01T12:00:00";
    const toDate = "2021-01-01T12:30:00";
    
    const minutesDifference = GetTimeDifferenceInMinutes(fromDate, toDate);
    
    console.log(minutesDifference); // Output: 30
  • GetTimeDifferenceInSeconds(fromDate, toDate)

    Get the number of seconds between two dates.

    Example:

    const { GetTimeDifferenceInSeconds } = require("utils-package");
    
    const fromDate = "2021-01-01T12:00:00";
    const toDate = "2021-01-01T12:00:15";
    
    const secondsDifference = GetTimeDifferenceInSeconds(fromDate, toDate);
    
    console.log(secondsDifference); // Output: 15

Array Related

  • ArrayGroupByAttribute(array[], key)

    Group an array of objects by a specific attribute.

    Example:

    const { ArrayGroupByAttribute } = require("utils-package");
    
    const array = [
      { name: "Jhon Doe", age: 25 },
      { name: "Alexa", age: 27 },
      { name: "Alexa", age: 28 },
    ];
    const key = "name";
    
    const groupedArray = ArrayGroupByAttribute(array, key);
    
    console.log(groupedArray);
    /* Output:
    {
      "Jhon Doe": [{ name: "Jhon Doe", age: 25 }],
      "Alexa": [
        { name: "Alexa", age: 27 },
        { name: "Alexa", age: 28 },
      ],
    }
    */
  • ArrayShuffle(array[])

    Shuffling an array.

    Example:

    const { ArrayShuffle } = require("utils-package");
    
    const array = [
      { name: "Jhon Doe", age: 25 },
      { name: "Alexa", age: 27 },
      { name: "Alexa", age: 28 },
    ];
    
    const shuffledArray = ArrayShuffle(array);
    
    console.log(shuffledArray);
    /* Output:
    [
      { name: "Alexa", age: 27 },
      { name: "Alexa", age: 28 },
      { name: "Jhon Doe", age: 25 },
    ]
    */
  • ArrayCountByAttribute(array[], key)

    Count occurrences of a specific attribute in an array of objects.

    Example:

    const { ArrayCountByAttribute } = require("utils-package");
    
    const array = [
      { name: "Jhon Doe", age: 25 },
      { name: "Alexa", age: 27 },
      { name: "Alexa", age: 28 },
    ];
    const key = "name";
    
    const counts = ArrayCountByAttribute(array, key);
    
    console.log(counts); // Output: { "Jhon Doe": 1, "Alexa": 2 }
  • AsyncForEach(array[], callback)

    Asynchronously iterate over an array and apply a callback function.

    Example:

    const { AsyncForEach } = require("utils-package");
    
    const array = [1, 2, 3, 4];
    
    AsyncForEach(array, async (item) => {
      await someAsyncTask(item);
    });
  • UniqueArrayOfObjects(array[], attribute)

    Get a new array with unique objects based on a specified attribute.

    Example:

    const { UniqueArrayOfObjects } = require("utils-package");
    
    const array = [{ name: "Jhon Doe" }, { name: "Alexa" }];
    const attribute = "name";
    
    const uniqueArray = UniqueArrayOfObjects(array, attribute);
    
    console.log(uniqueArray); // Output: [{ name: "Jhon Doe" }, { name: "Alexa" }]
  • UniqueArray(array[])

    Get a new array with unique elements from the given array.

    Example:

    const { UniqueArray } = require("utils-package");
    
    const array = [1, 2, 3, 4, 2, 3];
    
    const uniqueArray = UniqueArray(array);
    
    console.log(uniqueArray); // Output: [1, 2, 3, 4]
  • IntersectionArray(array1[], array2[])

    Get an array containing elements present in both array1 and array2.

    Example:

    const { IntersectionArray } = require("utils-package");
    
    const array1 = [1, 2, 3, 4];
    const array2 = [2, 3, 4, 5];
    
    const intersection = IntersectionArray(array1, array2);
    
    console.log(intersection); // Output: [2, 3, 4]
  • ExcludeArray(array1[], array2[])

    Get an array excluding elements present in array2 from array1.

    Example:

    const { ExcludeArray } = require("utils-package");
    
    const array1 = [1, 2, 3, 4];
    const array2 = [2, 3, 4, 5];
    
    const excludedArray = ExcludeArray(array1, array2);
    
    console.log(excludedArray); // Output: [1]
  • ParseObjectToArray(object)

    Convert an object into an array.

    Example:

    const { ParseObjectToArray } = require("utils-package");
    
    const object = { a: 1, b: 2 };
    
    const array = ParseObjectToArray(object);
    
    console.log(array); // Output: [1, 2]
  • JsonChunkArray(array[objects], size)

    Split a JSON array of objects into smaller chunks of a given size.

    Example:

    const { JsonChunkArray } = require("utils-package");
    
    const array = [{ a: 1 }, { b: 2 }, { c: 3 }];
    const size = 2;
    
    const chunkedArray = JsonChunkArray(array, size);
    
    console.log(chunkedArray);
    /* Output:
    [
      [{ a: 1 }, { b: 2 }],
      [{ c: 3 }],
    ]
    */

String Related

  • IsValidEmail(email)

    Check if the given string is a valid email address.

    Example:

    const { IsValidEmail } = require("utils-package");
    
    const email = "[email protected]";
    
    const isValid = IsValidEmail(email);
    
    console.log(isValid); // Output: true
  • IsValidBDPhoneNumber(number)

    Check if the given string is a valid Bangladesh phone number.

    Example:

    const { IsValidBDPhoneNumber } = require("utils-package");
    
    const number = "+8801700000000";
    
    const isValid = IsValidBDPhoneNumber(number);
    
    console.log(isValid); // Output: true
  • IsValidUserName(username)

    Check if the given string is a valid username.

    Example:

    const { IsValidUserName } = require("utils-package");
    
    const username = "aamaruf131";
    
    const isValid = IsValidUserName(username);
    
    console.log(isValid); // Output: true
  • IsValidUUID(uuid)

    Check if the given string is a valid UUID (Universally Unique Identifier).

    Example:

    const { IsValidUUID } = require("utils-package");
    
    const uuid = "48a2d845-edfa-4681-926e-31f635771da5";
    
    const isValid = IsValidUUID(uuid);
    
    console.log(isValid); // Output: true
  • CamelCaseToSeparateString(camelCaseString)

    Convert a CamelCase string into a separated string.

    Example:

    const { CamelCaseToSeparateString } = require("utils-package");
    
    const camelCaseString = "exampleCamelCase";
    
    const separatedString = CamelCaseToSeparateString(camelCaseString);
    
    console.log(separatedString); // Output: "example Camel Case"
  • GenerateKeyOrCode(codeLength, type)

    Generate a random key or code of a specified length and type (HEX or OCTAL).

    Example:

    const { GenerateKeyOrCode } = require("utils-package");
    
    const codeLength = 5;
    const type = "HEX";
    
    const code = GenerateKeyOrCode(codeLength, type);
    
    console.log(code); // Output: "a1b2c"
  • GenerateKeyOrCodeWithPrefix(prefix, length, code)

    Generate a random key or code with a specified prefix and length.

    Example:

    const { GenerateKeyOrCodeWithPrefix } = require("utils-package");
    
    const prefix = "0";
    const length = 8;
    const code = "ABC";
    
    const generatedCode = GenerateKeyOrCodeWithPrefix(prefix, length, code);
    
    console.log(generatedCode); // Output: "0ABCxxxx"

Object Related

  • CloneObject(object)

    Create a deep copy of the given object.

    Example:

    const { CloneObject } = require("utils-package");
    
    const originalObject = {
      name: "John",
      age: 30,
      address: { city: "New York", zip: "10001" },
    };
    
    const clonedObject = CloneObject(originalObject);
    
    console.log(clonedObject); // Output: { name: "John", age: 30, address: { city: "New York", zip: "10001" } }

How to Use

You can use these utility functions in your projects by simply importing the UtilsPackage and calling the functions as needed.

Installation

To install UtilsPackage, you can use your package manager of choice:

npm install utils-package

# or

yarn add utils-package

Contributors

  • Farzan Hossan Shaikat

Feel free to contribute to this project by submitting pull requests or reporting issues.

License


Thank you for using UtilsPackage! We hope these utility functions make your coding experience more enjoyable and productive. If you have any questions or feedback, please don't hesitate to reach out to us. Happy coding!