meritt / rework-clone

Clone module for Rework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rework-clone

Build Status

This module clones properties from one rule set to another, unlike rework-inherit (rework.extend()) which concatenates the selectors.

Don’t copy anything and everything! Think when you need to inherit and when to clone.

Example

.a {
  background: red
}
.b {
  clone: .a;
}

yields:

.a {
  background: red;
}
.b {
  background: red;
}

Usage

var clone = require('rework-clone');

var css = rework(inputCSS)
  .use(clone(options))
  .toString();

Options

This is only one option: regexp to replace.

var css = rework(inputCSS)
  .use(clone({regexp: /^foo?$/}))
  .toString();

It will work with all foo properties.

License

MIT

About

Clone module for Rework

License:MIT License


Languages

Language:JavaScript 62.3%Language:CSS 37.7%