From b7378a9994724750198e0d165c575be8538334fb Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Thu, 16 Dec 2021 14:37:09 +0100 Subject: facilitate tracking of IndexedDB item store contents --- common/entities.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/entities.js') diff --git a/common/entities.js b/common/entities.js index 46836b5..3a1346a 100644 --- a/common/entities.js +++ b/common/entities.js @@ -45,7 +45,7 @@ * Convert ver_str into an array representation, e.g. for ver_str="4.6.13.0" * return [4, 6, 13, 0]. */ -const parse_version = ver_str => ver_str.split(".").map(parseInt); +const parse_version = ver_str => ver_str.split(".").map(n => parseInt(n)); /* * ver is an array of integers. rev is an optional integer. Produce string -- cgit v1.2.3