indenthero
v1.1.1
Published
Easily indent a block of text
Downloads
4
Readme
indenthero
The hero you need when indenting text.
Usage
var indenthero = require('indenthero');
indenthero('i am a single line'); // ' i am a single line'
indenthero('i am two\nlines of text'); //' i am two\n lines of text'
// You can also specify the amount to indent by
indenthero('one space', 1); // ' one space'
indenthero('five spaces', 5); // ' five spaces'
Installation
npm install indenthero --save