Skip to main content

Mountain/ProcessManagement/NodeResolver/
NodeExecutableName.rs

1
2//! Platform-specific filename for the Node executable.
3
4pub fn Fn() -> &'static str { if cfg!(target_os = "windows") { "node.exe" } else { "node" } }