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