0.0.8 • Published 12 years ago

oneliner v0.0.8

Weekly downloads
260
License
-
Repository
github
Last release
12 years ago

Oneliner

Converts a string that contains line feed characters into one that doesn't.

Installation

npm install oneliner

Usage

var oneliner = require('oneliner');

var template = "    <html>\n\n<head>\n        </head>\n<body>...</body>\n</html>\n\n     ";

oneliner(template);

And the output will be:

"<html><head> </head><body>...</body></html>"