Urara-Blog/node_modules/.pnpm-store/v3/files/bc/6e0e1999273cc68d6367884270637c235c769131a8106b59fb9b0fce8616e87b8922fc210e33c059f9987fe65860628db9c84f07bb6867f73260d6769dea16
2022-08-14 01:14:53 +08:00

24 lines
476 B
Text

var test = require('tape');
var table = require('../');
test('dot align', function (t) {
t.plan(1);
var s = table([
[ '0.1.2' ],
[ '11.22.33' ],
[ '5.6.7' ],
[ '1.22222' ],
[ '12345.' ],
[ '5555.' ],
[ '123' ]
], { align: [ '.' ] });
t.equal(s, [
' 0.1.2',
'11.22.33',
' 5.6.7',
' 1.22222',
'12345.',
' 5555.',
' 123'
].join('\n'));
});