Skip to content

Commit

Permalink
Merge pull request #2 from kamholz/master
Browse files Browse the repository at this point in the history
export arrayParser on main pg-types object
  • Loading branch information
brianc committed May 3, 2014
2 parents 44bbf37 + 7ad098a commit 5aba5f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var textParsers = require('./lib/textParsers');
var binaryParsers = require('./lib/binaryParsers');
var arrayParser = require('./lib/arrayParser');

var typeParsers = {
text: {},
Expand Down Expand Up @@ -41,5 +42,6 @@ binaryParsers.init(function(oid, converter) {

module.exports = {
getTypeParser: getTypeParser,
setTypeParser: setTypeParser
setTypeParser: setTypeParser,
arrayParser: arrayParser
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-types",
"version": "1.0.0",
"version": "1.0.1",
"description": "Query result type converters for node-postgres",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 5aba5f4

Please sign in to comment.