Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

center.js 221B

12345678
  1. var table = require('../');
  2. var t = table([
  3. [ 'beep', '1024', 'xyz' ],
  4. [ 'boop', '3388450', 'tuv' ],
  5. [ 'foo', '10106', 'qrstuv' ],
  6. [ 'bar', '45', 'lmno' ]
  7. ], { align: [ 'l', 'c', 'l' ] });
  8. console.log(t);