0.1.0 • Published 10 years ago

require-string v0.1.0

Weekly downloads
10
License
-
Repository
github
Last release
10 years ago

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