1.0.1 • Published 8 years ago

stylesheet-injector v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

stylesheet-injector

Injects CSS stylesheets into DOM

js-semistandard-style

Installation

$ npm install stylesheet-injector --save

Usage

const stylesheetInjector = require('stylesheet-injector');
const styleString = getStyleStringSomehow();

stylesheetInjector('myAwsomeStyles', styleString);

API

require('stylesheet-injector')(title, content)

Type: {Function}

  • {String} title - Title of the injected stylesheet.
  • {String} content - CSS content.