mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
textParser: fix error
This commit is contained in:
parent
ba9b85fe26
commit
c513780fae
@ -32,7 +32,7 @@ p.parseDate = function(value) {
|
||||
var miliString = match[7];
|
||||
var mili = 0;
|
||||
if(miliString) {
|
||||
mili = 1000 * this.parseFloat(miliString);
|
||||
mili = 1000 * parseFloat(miliString);
|
||||
}
|
||||
|
||||
var tZone = /([Z|+\-])(\d{2})?(\d{2})?/.exec(value.split(' ')[1]);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user