private/New-InternalEnvValue.ps1

#requires -Version 3
Set-StrictMode -Version Latest
function New-InternalEnvValue($path) {
    [PSCustomObject]@{
        Path            = $path
        NormalizePath   = ($path | Convert-InternalNormalizeDirPath)
    }
}