New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

easy-kit-utils

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-kit-utils

Simple JavaScript kit for common utils

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Easy Kit Utils

npm version license

Easy Kit Utils is a lightweight, comprehensive collection of JavaScript/TypeScript utility functions designed to simplify common programming tasks. It provides a set of helpers for array manipulation, type checking, object operations, and string formatting, fully typed with TypeScript.

Features

  • 🚀 Lightweight & Tree-shakable: Import only what you need.
  • 💪 TypeScript Support: Written in TypeScript with full type definitions.
  • 🛡️ Reliable: Comprehensive test suite ensures stability.
  • 📦 Zero Dependencies: Pure utility functions with no external runtime dependencies.

Installation

Install the package via npm, yarn, or pnpm:

npm install easy-kit-utils
# or
yarn add easy-kit-utils
# or
pnpm add easy-kit-utils

Usage

You can import specific functions from the main package:

import { chunk, isString, merge, capitalize } from "easy-kit-utils";

// Array Example
const array = [1, 2, 3, 4, 5];
console.log(chunk(array, 2)); // [[1, 2], [3, 4], [5]]

// Check Example
console.log(isString("hello")); // true

// Object Example
const obj1 = { a: 1 };
const obj2 = { b: 2 };
console.log(merge(obj1, obj2)); // { a: 1, b: 2 }

// String Example
console.log(capitalize("hello world")); // "Hello world"

API Reference

🛠️ Array Utilities

Helpers for working with arrays.

  • chunk: Splits an array into chunks of a specified size.
  • groupBy: Groups array elements based on a criterion.
  • intersection: Creates an array of unique values that are included in all given arrays.
  • partition: Splits an array into two groups based on a predicate.
  • uniq: Creates a duplicate-free version of an array.

✅ Check Utilities

Type guards and validation helpers.

  • isArray: Checks if value is an array.
  • isBlankArray: Checks if an array is empty or contains only null/undefined values.
  • isBoolean: Checks if value is a boolean.
  • isDefined: Checks if value is defined (not null or undefined).
  • isEmptyString: Checks if a string is empty.
  • isFunction: Checks if value is a function.
  • isNull: Checks if value is null.
  • isNumber: Checks if value is a number.
  • isObject: Checks if value is an object.
  • isPromise: Checks if value is a promise.
  • isString: Checks if value is a string.
  • isTrue: Checks if value is explicitly true.
  • isTrueFormat: Validates if a string matches a specific format (e.g. email, phone).

📦 Object Utilities

Helpers for object manipulation.

  • deepClone: Creates a deep clone of an object.
  • get: Retrieves a value from a nested object path safely.
  • merge: Deeply merges two objects.
  • omit: Creates an object composed of the own and inherited enumerable property paths of object that are not omitted.
  • pick: Creates an object composed of the picked object properties.

📝 String Utilities

Helpers for string manipulation.

  • camelCase: Converts a string to camelCase.
  • capitalize: Capitalizes the first character of a string.
  • kebabCase: Converts a string to kebab-case.
  • snakeCase: Converts a string to snake_case.
  • truncate: Truncates a string if it's longer than the given maximum string length.

Contributing

All instructions can be found in the CONTRIBUTING.md file.

Support

If you like this project, you can support me with a very small donation.
I would be grateful 🥹

Buy Me A Coffee

Keywords

library

FAQs

Package last updated on 06 Jan 2026

Did you know?

Socket

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.

Install

Related posts