From 1ec6495e16582792679ef63bbb68222ca733b674 Mon Sep 17 00:00:00 2001 From: Wu Jian Ping Date: Fri, 22 Jul 2022 15:45:45 +0800 Subject: [PATCH] . --- binding/nodejs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding/nodejs/index.js b/binding/nodejs/index.js index 08a23df..40c212b 100644 --- a/binding/nodejs/index.js +++ b/binding/nodejs/index.js @@ -175,7 +175,7 @@ class Searcher { const diff = process.hrtime(startTime) - const took = (diff[0] * 1e9 + diff[1]) / 1e6 + const took = (diff[0] * 1e9 + diff[1]) / 1e3 return { region: result, ioCount: ioStatus.ioCount, took } } }