diff options
Diffstat (limited to 'database.js')
-rw-r--r-- | database.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/database.js b/database.js index e080d39..f48f87e 100644 --- a/database.js +++ b/database.js @@ -5,7 +5,7 @@ const esClient = new elasticsearch.Client({ }); module.exports = { - index: function bulkIndex(index, type, data) { + index: (index, type, data) => { let bulkBody = []; data.forEach(item => { @@ -32,7 +32,7 @@ module.exports = { }) .catch(console.err); }, - search: function search(index, body) { + search: (index, body) => { return esClient.search({index: index, body: body}); } };
\ No newline at end of file |