servidor funciona, gpio desabilitat

This commit is contained in:
nau
2016-06-21 18:42:57 +02:00
parent b5a55ed6b1
commit 4825f68edf
874 changed files with 109057 additions and 0 deletions

35
node_modules/formidable/lib/json_parser.js generated vendored Executable file
View File

@@ -0,0 +1,35 @@
if (global.GENTLY) require = GENTLY.hijack(require);
var Buffer = require('buffer').Buffer
function JSONParser() {
this.data = new Buffer('');
this.bytesWritten = 0;
};
exports.JSONParser = JSONParser;
JSONParser.prototype.initWithLength = function(length) {
this.data = new Buffer(length);
}
JSONParser.prototype.write = function(buffer) {
if (this.data.length >= this.bytesWritten + buffer.length) {
buffer.copy(this.data, this.bytesWritten);
} else {
this.data = Buffer.concat([this.data, buffer]);
}
this.bytesWritten += buffer.length;
return buffer.length;
}
JSONParser.prototype.end = function() {
try {
var fields = JSON.parse(this.data.toString('utf8'))
for (var field in fields) {
this.onField(field, fields[field]);
}
} catch (e) {}
this.data = null;
this.onEnd();
}