Sha256: 134db6f70386981dee93b936acd35f1204f253f28844f6baf02d96245500dddd

Contents?: true

Size: 850 Bytes

Versions: 26

Compression:

Stored size: 850 Bytes

Contents

"use strict";

const os = require("os");
const platform = os.platform();

if ([
  "android",
  "darwin",
  "freebsd",
  "linux",
  "openbsd",
  "sunos",
  "win32",
  "aix",
].indexOf(platform) !== -1) {
  let file;
  if (platform === "aix") {
    // AIX `netstat` output is compatible with Solaris
    file = `${os.type() === "OS400" ? "ibmi" : "sunos"}.js`;
  } else {
    file = `${platform}.js`;
  }

  const m = require(`./${file}`);
  module.exports.v4 = () => m.v4();
  module.exports.v6 = () => m.v6();
  module.exports.v4.sync = () => m.v4.sync();
  module.exports.v6.sync = () => m.v6.sync();
} else {
  const unsupported = () => { throw new Error(`Unsupported Platform: ${platform}`); };
  module.exports.v4 = unsupported;
  module.exports.v6 = unsupported;
  module.exports.v4.sync = unsupported;
  module.exports.v6.sync = unsupported;
}

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/default-gateway/index.js
disco_app-0.18.0 test/dummy/node_modules/default-gateway/index.js
disco_app-0.18.2 test/dummy/node_modules/default-gateway/index.js
disco_app-0.16.1 test/dummy/node_modules/default-gateway/index.js
disco_app-0.15.2 test/dummy/node_modules/default-gateway/index.js
disco_app-0.18.4 test/dummy/node_modules/default-gateway/index.js
disco_app-0.18.1 test/dummy/node_modules/default-gateway/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/default-gateway/index.js
disco_app-0.14.0 test/dummy/node_modules/default-gateway/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/default-gateway/index.js
tang-0.2.1 spec/tang_app/node_modules/default-gateway/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/default-gateway/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/default-gateway/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/default-gateway/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/default-gateway/index.js
tang-0.2.0 spec/tang_app/node_modules/default-gateway/index.js
tang-0.1.0 spec/tang_app/node_modules/default-gateway/index.js
tang-0.0.9 spec/tang_app/node_modules/default-gateway/index.js
enju_library-0.3.8 spec/dummy/node_modules/default-gateway/index.js
jester-data-8.0.0 node_modules/default-gateway/index.js