Socket
Socket
Sign inDemoInstall

class-mergesort

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

class-mergesort

A css class utility for sorting arrays of objects by a given key


Version published
Maintainers
1
Created
Source

Class MergeSort

npm version

Class MergeSort is a utility library designed to facilitate the manipulation and combination of CSS classes in TypeScript and JavaScript applications. It provides various utilities to toggle, prefix, suffix, filter, merge, and more.

Installation

Choose your package manager to install class-mergesort.

npm i -D class-mergesort
yarn add -D class-mergesort
pnpm i -D class-mergesort

API Overview

toggleClass

Takes a class name and a boolean condition. If the condition is true, it returns the class name; otherwise, an empty string is returned.

const isActive = true;
const activeClass = toggleClass('active', isActive);
// Output: "active" if isActive is true, "" otherwise.

prefixClass

Prepends a specified prefix to each class name in the list. Particularly useful for frameworks like Bootstrap.

const prefixedClasses = prefixClass('btn-', 'primary', 'large');
// Output: "btn-primary btn-large"

suffixClass

Appends a specified suffix to each class name in the list. Useful for BEM methodology.

const suffixedClasses = suffixClass('--disabled', 'button', 'input');
// Output: "button--disabled input--disabled"

filterClass

Filters class names based on a custom condition function. Only the class names that meet the condition will be included in the result.

const filteredClasses = filterClass(
  (name) => !name.includes('omit'),
  'button',
  'omit-me',
);
// Output: "button"

mergeClass

Combines multiple class names into a single string, while eliminating duplicates and empty strings.

// Multiple class name strings
const merged1 = mergeClass('btn btn-primary', 'btn-secondary', 'btn');
// Output: "btn btn-primary btn-secondary"

// Array of class names
const merged2 = mergeClass(['btn', 'btn-large'], ['btn-small', 'btn']);
// Output: "btn btn-large btn-small"

// Mixed types
const merged3 = mergeClass('btn btn-primary', ['btn-secondary', 'btn-large']);
// Output: "btn btn-primary btn-secondary btn-large"

classNameX

Acts similar to mergeClass but allows more complex structures and types for combining class names.

// Check API documentation for examples.

License

MIT

Keywords

FAQs

Package last updated on 27 Oct 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc