hdt 3.3.0 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -163,7 +163,7 @@ std::ostream &operator<<(std::ostream &stream, StopWatch &sw) {
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
std::string StopWatch::toHuman(unsigned long long time) {
|
|
166
|
-
|
|
166
|
+
unsigned long long tot_secs = time/1000000;
|
|
167
167
|
|
|
168
168
|
unsigned int hours = tot_secs/3600;
|
|
169
169
|
unsigned int mins = (tot_secs/60) % 60;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hdt",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Native bindings to access HDT compressed triple files.",
|
|
5
5
|
"author": "Ruben Verborgh <ruben.verborgh@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"minimist": "^1.1.0",
|
|
42
42
|
"n3": "^2.0.1",
|
|
43
|
-
"nan": "^2.
|
|
43
|
+
"nan": "^2.27.0",
|
|
44
44
|
"rdf-string": "^2.0.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
+
"@comunica/utils-bindings-factory": "^5.0.0",
|
|
47
48
|
"eslint": "^5.3.0",
|
|
48
49
|
"mocha": "^6.2.2",
|
|
49
50
|
"precommit-hook": "^3.0.0",
|
|
50
51
|
"replace-in-file": "^8.3.0",
|
|
51
|
-
"should": "^13.1.0"
|
|
52
|
-
"@comunica/utils-bindings-factory": "^5.0.0"
|
|
52
|
+
"should": "^13.1.0"
|
|
53
53
|
},
|
|
54
54
|
"pre-commit": [
|
|
55
55
|
"lint",
|