atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
36 lines (31 loc) • 1.37 kB
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { var callNext = step.bind(null, 'next'); var callThrow = step.bind(null, 'throw'); function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(callNext, callThrow); } } callNext(); }); }; }
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
var _process2;
function _process() {
return _process2 = require('./process');
}
/**
* Provides a cross-platform way to check whether a binary is available.
*
* We ran into problems with the npm `which` package (the nature of which I unfortunately don't
* remember) so we can use this for now.
*/
exports.default = _asyncToGenerator(function* (command) {
var whichCommand = process.platform === 'win32' ? 'where' : 'which';
try {
var result = yield (0, (_process2 || _process()).checkOutput)(whichCommand, [command]);
return result.stdout.trim();
} catch (e) {
return null;
}
});
module.exports = exports.default;