Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

18
VApp/node_modules/text-table/test/center.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
var test = require('tape');
var table = require('../');
test('center', function (t) {
t.plan(1);
var s = table([
[ 'beep', '1024', 'xyz' ],
[ 'boop', '3388450', 'tuv' ],
[ 'foo', '10106', 'qrstuv' ],
[ 'bar', '45', 'lmno' ]
], { align: [ 'l', 'c', 'l' ] });
t.equal(s, [
'beep 1024 xyz',
'boop 3388450 tuv',
'foo 10106 qrstuv',
'bar 45 lmno'
].join('\n'));
});