systeminformation 5.22.7 → 5.22.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/memory.js CHANGED
@@ -52,7 +52,7 @@ const LINUX_RAM_manufacturers = {
52
52
  '04CD': 'G-Skill',
53
53
  '059B': 'Crucial',
54
54
  '00CE': 'Samsung',
55
- '1315': 'Crutial',
55
+ '1315': 'Crucial',
56
56
  '014F': 'Transcend Information',
57
57
  '2C00': 'Micron Technology Inc.',
58
58
  '802C': 'Micron Technology Inc.',
package/lib/util.js CHANGED
@@ -52,7 +52,7 @@ const execOptsWin = {
52
52
  windowsHide: true,
53
53
  maxBuffer: 1024 * 20000,
54
54
  encoding: 'UTF-8',
55
- env: util._extend({}, process.env, { LANG: 'en_US.UTF-8' })
55
+ env: Object.assign({}, process.env, { LANG: 'en_US.UTF-8' })
56
56
  };
57
57
 
58
58
  function toInt(value) {
@@ -398,7 +398,7 @@ function powerShellStart() {
398
398
  windowsHide: true,
399
399
  maxBuffer: 1024 * 20000,
400
400
  encoding: 'UTF-8',
401
- env: util._extend({}, process.env, { LANG: 'en_US.UTF-8' })
401
+ env: Object.assign({}, process.env, { LANG: 'en_US.UTF-8' })
402
402
  });
403
403
  if (_psChild && _psChild.pid) {
404
404
  _psPersistent = true;
@@ -476,7 +476,7 @@ function powerShell(cmd) {
476
476
  windowsHide: true,
477
477
  maxBuffer: 1024 * 20000,
478
478
  encoding: 'UTF-8',
479
- env: util._extend({}, process.env, { LANG: 'en_US.UTF-8' })
479
+ env: Object.assign({}, process.env, { LANG: 'en_US.UTF-8' })
480
480
  });
481
481
 
482
482
  if (child && !child.pid) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "systeminformation",
3
- "version": "5.22.7",
3
+ "version": "5.22.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)",