index.js 568 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

'use strict';

/**
 * Xpipe - class consisting of only static methods
 * @class
 */
class Xpipe {

  /**
   * Return a cross-platform IPC path
   * @return {string}
   */
  static eq(path) {
    const prefix = Xpipe.prefix;
    if (prefix.endsWith('/') && path.startsWith('/')) {
      return prefix + path.substr(1);
    }
    return prefix + path;
  }

  /**
   * Returns the prefix on Windows and empty string otherwise
   * @return {string}
   */
  static get prefix() {
    return process.platform === 'win32' ? '//./pipe/' : '';
  }

}

module.exports = Xpipe;