nestrs-cli-rs 0.1.0

Rust port of the Nest CLI for the nestrs organization.
Documentation
1
2
3
4
5
6
7
8
9
//! Upstream source: `../nest-cli/lib/compiler/helpers/append-extension.ts`.

pub fn append_ts_extension(path: &str) -> String {
    if path.ends_with(".ts") {
        path.to_string()
    } else {
        format!("{path}.ts")
    }
}