unindent

2.0.0 • Public • Published

unindent

Remove indentations from a block of code

Installation

npm install unindent

Example

var assert = require('assert');
var unindent = require('unindent');
var code = '\ta\t\tb';
 
assert.equal(unindent(code), 'a\tb');

API

unindent(code, [opts]);
  • code - A string of code.
  • opts - An optional object literal support these options:
    • tabSize - Number. If specified, the starting tabs of each line will be convert to spaces.
    • trim - Boolean. Whether the unindented code should be trimed.

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i unindent

    Weekly Downloads

    240

    Version

    2.0.0

    License

    MIT

    Last publish

    Collaborators

    • elliottcable