Socket
Socket
Sign inDemoInstall

class-manipulator

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    class-manipulator

Chainable wrapper API for manipulating a DOM Element's classes or a class string


Version published
Weekly downloads
3
Maintainers
1
Install size
414 kB
Created
Weekly downloads
 

Readme

Source

class-manipulator

Chainable class list API for manipulating a DOM Element's classes or a class string.

Installation

npm install class-manipulator

Usage

Add class "foo", remove "bar", add or remove "baz", then apply the changes to the element:

list(document.querySelector(".myDiv")).add("foo").remove("bar").toggle("baz").apply();

Note how the DOM isn't changed until you call .apply(). The class attribute is only ever read once no matter how many changes you make to the list.

You can also create a class list wrapper not associated with any element:

list("foo bar baz").add("nub").remove("bar").toString(); // "foo baz nub"

You can copy a class list to another element like this:

list("foo bar baz").copyTo(someElement).apply();

You can also sort and filter a class list:

function threeCharsLong (str) {
    return str.length === 3;
}

list("foo apple bar baz").filter(threeCharsLong).sort().toString(); // "bar baz foo"

For a full reference of the API, see docs/index.html. You can also take a look at the tests at tests.js to find out what else you can do with the API.

Development

If you want to contribute, do so by making a pull request on GitHub. Make sure you do the following:

  • Update the source code docs if you make changes to the API.
  • Run the test to make sure you didn't break anything.
  • Add new tests if you add new things to the API.
  • Use ESLint on the code and correct any errors reported.

Running tests

If you don't have it yet, install Mocha:

npm install -g Mocha

Run the tests:

mocha tests.js

Updating the docs

You need to have docco installed to update the documentation:

npm install -g docco

To update the docs, run:

docco index.js

Keywords

FAQs

Last updated on 20 Aug 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc