Einkaufslisten anzeigen, Datenbankeinbindung

This commit is contained in:
Lukas Nowy
2018-10-27 01:10:46 +02:00
parent 5e3c83707f
commit 8e7d96310f
425 changed files with 77158 additions and 3 deletions

View File

@ -0,0 +1,31 @@
var Writer = require(__dirname + '/../');
module.exports = function() {
var writer = new Writer();
writer.addInt16(-100000000);
writer.addInt16(-1000);
writer.addInt16(-1);
writer.addInt16(0);
writer.addInt16(1);
writer.addInt16(1000);
writer.addInt16(1000000000);
writer.addInt16(-100000000);
writer.addInt16(-100000000);
writer.addInt16(-1000);
writer.addInt16(-1);
writer.addInt16(0);
writer.addInt16(1);
writer.addInt16(1000);
writer.addInt16(1000000000);
writer.addInt16(-1000);
writer.addInt16(-1);
writer.addInt16(0);
writer.addInt16(1);
writer.addInt16(1000);
writer.addInt16(1000000000);
};
if(!module.parent) {
module.exports();
console.log('benchmark ok');
}