mysql-wrap-production
Advanced tools
Comparing version 0.7.1 to 0.7.2
{ | ||
"name": "mysql-wrap-production", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"description": "Mysql interface and helper functions, wrapping node-mysql", | ||
@@ -5,0 +5,0 @@ "main": "src/mysql-wrap.js", |
@@ -303,4 +303,4 @@ 'use strict'; | ||
self.escape = poolCluster.escape; | ||
self.escapeId = poolCluster.escapeId; | ||
self.escape = data => poolCluster.escape(data); | ||
self.escapeId = data => poolCluster.escapeId(data); | ||
@@ -307,0 +307,0 @@ return self; |
39109