samcday/node-fastcgi-stream

View on GitHub
lib/records/get_values.js

Summary

Maintainability
B
5 hrs
Test Coverage
'use strict';

var common = require('./common');

var GetValues = module.exports = function GetValues(values) {
  this.values = values || [];

  this.getSize = function() {
    return common.calculateNameValuePairsLength(this.values);
  };
  
  this.write = function(buffer) {
    common.writeNameValuePairs(buffer, this.values);
  };
  
  this.read = function(buffer) {
    this.values = common.readNameValuePairs(buffer);
  };
};
GetValues.prototype.TYPE = GetValues.TYPE = 9;