UNPKG
@webwallet/graphstore
Version:
latest (0.3.4)
1.0.3
1.0.2
1.0.1
1.0.0
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
Graph database queries and connection handling.
github.com/webwallet/graphstore
webwallet/graphstore
@webwallet/graphstore
/
lib
/
database
/
neo4j
/
utils
/
uglifyQueryString.js
8 lines
(5 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
function
uglifyQueryString
(
string
, options
) {
return
string
.
replace
(
/\n/g
,
' '
).
trim
() }
module
.
exports
= uglifyQueryString