preact-material-components
Version:
preact wrapper for "Material Components for the web"
17 lines (15 loc) • 473 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* @author Toru Nagashima
* @copyright 2015 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
/**
* Launches a new process with the given command.
* This is {@link ./spawn-posix.js:spawn} or {@link ./spawn-win32.js:spawn}
* @private
*/
exports.default = require(process.platform === "win32" ? "./spawn-win32" : "./spawn-posix").default;