require-string

0.1.0 • Public • Published

require-string

Turns an arbitrary String into a CommonJS compatible module.

So this:

.wat {
  color: red;
}

div i {
  color: blue;
}

Turns into this:

module.exports = function(){
  return ".wat {\n  color: red;\n}\n\ndiv i {\n  color: blue;\n}\n";
};

Installation

Install with component(1):

$ component install TooTallNate/require-string

API

requireString(String str) → String

License

MIT

/require-string/

    Package Sidebar

    Install

    npm i require-string

    Weekly Downloads

    0

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • tootallnate