systeminformation 5.31.8 → 5.31.9
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.
- package/lib/util.js +2 -2
- package/package.json +1 -1
package/lib/util.js
CHANGED
|
@@ -1165,7 +1165,7 @@ function promiseAll(promises) {
|
|
|
1165
1165
|
}
|
|
1166
1166
|
|
|
1167
1167
|
function promisify(nodeStyleFunction) {
|
|
1168
|
-
return ()
|
|
1168
|
+
return function () {
|
|
1169
1169
|
const args = Array.prototype.slice.call(arguments);
|
|
1170
1170
|
return new Promise((resolve, reject) => {
|
|
1171
1171
|
args.push((err, data) => {
|
|
@@ -1181,7 +1181,7 @@ function promisify(nodeStyleFunction) {
|
|
|
1181
1181
|
}
|
|
1182
1182
|
|
|
1183
1183
|
function promisifySave(nodeStyleFunction) {
|
|
1184
|
-
return ()
|
|
1184
|
+
return function () {
|
|
1185
1185
|
const args = Array.prototype.slice.call(arguments);
|
|
1186
1186
|
return new Promise((resolve) => {
|
|
1187
1187
|
args.push((err, data) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.31.
|
|
3
|
+
"version": "5.31.9",
|
|
4
4
|
"description": "Advanced, lightweight system and OS information library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|