Socket
Book a DemoInstallSign in
Socket

classname-concat

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

classname-concat

Class name concatenation

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
4
-20%
Maintainers
1
Weekly downloads
 
Created
Source

classname-concat

package version package downloads standard-readme compliant package license make a pull request

Class name concatenation

Table of Contents

Install

Install the package locally within you project folder with your package manager:

With npm:

npm install classname-concat

With yarn:

yarn add classname-concat

With pnpm:

pnpm add classname-concat

Usage

import cc from "classname-concat";

console.log(cc("foo", "bar")); // foo bar
console.log(cc("foo", { bar: false })); // foo
console.log(cc("foo", { bar: false }, { baz: true })); // foo baz
console.log(cc("foo", { bar: false, nested: { ping: true } })); // foo ping
console.log(cc("foo", { bar: () => true, baz: { ping: true } })); // foo bar ping
console.log(cc(["foo", () => "hello"])); // foo hello
console.log(cc(null, "hello", undefined, "friend")); // hello friend

API

For all configuration options, please see the API docs.

Contributing

Got an idea for a new feature? Found a bug? Contributions are welcome! Please open up an issue or make a pull request.

License

MIT © Tiaan du Plessis

Keywords

classnames

FAQs

Package last updated on 31 May 2022

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