Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/de-indent/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 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')
})
})
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0054 ]-- |