Urara-Blog/node_modules/.pnpm-store/v3/files/f3/d976898b261815864eeedae89b86c7d9e21ba2d417b2e8187292563e72eac56bb2248f6e919f8df298df2912b8f82bed78c323921affa9a2cbfc05e5271f3c
2022-08-14 01:14:53 +08:00

20 lines
603 B
Text

/**
* @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"
)