Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/npm-run-all/lib/spawn.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

21 lines
603 B
JavaScript

/**
* @module spawn
* @author Toru Nagashima
* @copyright 2015 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
"use strict"
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
/**
* Launches a new process with the given command.
* This is {@link ./spawn-posix.js:spawn} or {@link ./spawn-win32.js:spawn}
* @private
*/
module.exports = require(
process.platform === "win32" ? "./spawn-win32" : "./spawn-posix"
)