From 5649d181fe670ede4c8346f49fc793ce9355e995 Mon Sep 17 00:00:00 2001 From: Hexagon Date: Thu, 22 Dec 2016 12:04:10 +0100 Subject: [PATCH] Update Thinker.js --- lib/Thinker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Thinker.js b/lib/Thinker.js index 65c8b42..469cb45 100644 --- a/lib/Thinker.js +++ b/lib/Thinker.js @@ -47,7 +47,7 @@ function processWord (word, opts) { } // Prepare object - result = { original: word /*, processed: undefined*/ }; + result = { original: word, processed: undefined }; // Apply all wordProcessors for (i = 0; i < opts.wordProcessors.length; i++) { @@ -252,4 +252,4 @@ Thinker.prototype.find = function (string) { Thinker.processors = processors; Thinker.rankers = rankers; -module.exports = Thinker; \ No newline at end of file +module.exports = Thinker;