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