async-g-i-s
Advanced tools
11
index.js
@@ -5,2 +5,9 @@ const fetch = global.fetch || require("node-fetch"); | ||
/** | ||
* @param {string} content | ||
* @returns {string} | ||
*/ | ||
const unicodeToString = content => | ||
content.replace(/\\u[\dA-F]{4}/gi, match => String.fromCharCode(parseInt(match.replace(/\\u/g, ''), 16))); | ||
/** | ||
* | ||
@@ -31,3 +38,3 @@ * Async version of g-i-s module | ||
results.push({ | ||
url: result[1], | ||
url: unicodeToString(result[1]), | ||
height: +result[2], | ||
@@ -38,2 +45,2 @@ width: +result[3] | ||
return results; | ||
} | ||
} |
{ | ||
"name": "async-g-i-s", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"description": "Async Google Image Search", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
6897
3.4%68
11.48%