Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Classwrap is a 0.3 KB JavaScript utility for conditionally concatenating class names.
import cw from "classwrap"
export function ToggleButton({ toggle, isOn }) {
return (
<div class="btn" onclick={toggle}>
<div
class={cw({
circle: true,
off: !isOn,
on: isOn
})}
/>
<span
class={cw({
textOff: !isOn
})}
>
{isOn ? "ON" : "OFF"}
</span>
</div>
)
}
Classwrap works in all browsers >=IE9. Use it with your favorite JavaScript view library.
Install with npm / Yarn.
npm i classwrap
Then with a module bundler like Rollup or Webpack, use as you would anything else.
import cw from "classwrap"
Or download the minified library from a unpkg or jsDelivr.
<script src="https://unpkg.com/classwrap"></script>
Then find it on window.classwrap
.
Classwrap joins all elements of an array or keys of an object into a string. If the value associated with a given key is falsy, the key will be ignored.
cw([
"btn",
{
"btn-active": true,
"btn-large": false
}
]) // => btn btn-active
Nested arrays or objects are supported too. Use this feature to assemble classes with a common prefix.
cw([
"tab",
{
tab: {
"--success": true,
"--error": false,
"--pending": false
}
}
]) // => tab tab--success
Classwrap was inspired by JedWatson/classnames with support for nested objects and improved performance. It differs from classnames in that it does not accept variable arguments.
cw("foo", "bar", "baz") // => foo
To solve this, wrap the arguments inside an array.
cw(["foo", "bar", "baz"]) // => foo bar baz
Classwrap is MIT licensed. See LICENSE.
FAQs
This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name.
The npm package classwrap receives a total of 2 weekly downloads. As such, classwrap popularity was classified as not popular.
We found that classwrap 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.