mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
var sys = require('sys');
|
|
var Row = function() {
|
|
};
|
|
sys.inherits(Row, Array);
|
|
var p = Row.prototype;
|
|
|
|
module.exports = Row;
|