diff --git a/package.json b/package.json index ba6ea2da2..2d02e6b52 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "email": "kirollos@gmail.com", "url": "http://kiro.me" }, - "version": "3.6.0", + "version": "3.6.1", "description": "Lightweight fuzzy-search", "license": "Apache-2.0", "repository": { diff --git a/src/index.js b/src/index.js index 70e44a71e..0130cece8 100644 --- a/src/index.js +++ b/src/index.js @@ -209,7 +209,7 @@ class Fuse { // Otherwise, the first item is an Object (hopefully), and thus the searching // is done on the values of the keys of each item. - console.time('_search'); + // console.time('_search'); for (let i = 0, len = list.length; i < len; i += 1) { let item = list[i] // Iterate over every key @@ -229,8 +229,7 @@ class Fuse { }) } } - - console.timeEnd('_search'); + // console.timeEnd('_search'); return results }