Is there a "command" equivalent of Bash in PowerShell?
I used to over-ride certain command in Bash like this:
function npm(){
command npm --no-color $@
}
I'd like to do the same in PowerShell, is there an equivalent of bash "command" in PowerShell?