
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@tailwindcssinjs/class-composer
Advanced tools
Simple utility functions for joining tailwindcss classNames together.
Simple utilities to compose tailwindcss classes.
# with npm
npm install @tailwindcssinjs/class-composer
# with Yarn
yarn add @tailwindcssinjs/class-composer
tw(string | string[] | string[][], ...)Valid composer function parameters are:
Note: It will return the composed classes in the same order as the input parameters, from left to right.
"variant[class1 class2]" => "variant:class1 variant:class2"
Support for custom variant array syntax.
The variant in front of the angle brackets gets applied to the classes inside.
Note: Nesting of variant arrays is not allowed.
import { twClassesSerializer } from "@tailwindcssinjs/class-composer";
const tw = twClassesSerializer(":");
tw("text-red-100 hover:bg-red-200 hover:m-4 sm:hover:bg-red-300");
tw("text-red-100", "hover:bg-red-200 hover:m-4", "sm:hover:bg-red-300");
tw("text-red-100", ["hover:bg-red-200", "hover:m-4", ["sm:hover:bg-red-300"]]);
tw("text-red-100 hover[bg-red-200 m-4] sm[hover:bg-red-300]");
//Same Result: "text-red-100 hover:bg-red-200 hover:m-4 sm:hover:bg-red-300"
twClassesComposer(string): functionTakes a separator string (e.g. ":") as parameter and returns a composer function. The composer function will return a Array of tailwind classes.
import { twClassesComposer } from "@tailwindcssinjs/class-composer";
const tw = twClassesComposer(":");
tw("text-red-100 hover:bg-red-200 sm:active:bg-red-300");
//Result: [ "text-red-100", "hover:bg-red-200", "sm:active:bg-red-300" ]
twClassesComposer(string): functionTakes a separator string (e.g. ":") as parameter and returns a composer function. The composer function will return an array of class and variants tuples.
import { twClassesParser } from "@tailwindcssinjs/class-composer";
const tw = twClassesParser(":");
tw("text-red-100 hover:bg-red-200 sm:active:bg-red-300");
//Result: [
// ["text-red-100", []],
// ["bg-red-200", ["hover"]],
// ["bg-red-300", ["active", "sm"]]
// ]
twClassesSerializer(string): functionTakes a separator string (e.g. ":") as parameter and returns a composer function. The composer function will return a tailwind classes string.
import { twClassesSerializer } from "@tailwindcssinjs/class-composer";
const tw = twClassesSerializer(":");
tw("text-red-100 hover:bg-red-200 sm:active:bg-red-300");
//Result: "text-red-100 hover:bg-red-200 sm:active:bg-red-300"
MIT. Copyright (c) 2020 Arthur Petrie.
FAQs
Simple utility functions for joining tailwindcss classNames together.
We found that @tailwindcssinjs/class-composer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.