![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/de-indent/ |
var assert = require('assert') var deindent = require('./index') describe('de-indent', function () { it('0 indent', function () { var str = '\nabc\n bcd\n cde\nefg' var res = deindent(str) assert.equal(str, res) }) it('non-0 indent', function () { var str = ' abc\n bcd\n cde\n efg' var res = deindent(str) assert.equal(res, 'abc\n bcd\ncde\n efg') }) it('tabs', function () { var str = '\tabc\n\t\tbcd\n\tcde\n\t\tefg' var res = deindent(str) assert.equal(res, 'abc\n\tbcd\ncde\n\tefg') }) it('single line', function () { var str = '\n <h2 class="red">{{msg}}</h2>\n' var res = deindent(str) assert.equal(res, '\n<h2 class="red">{{msg}}</h2>\n') }) })