7 lines
199 B
Fish
7 lines
199 B
Fish
function nlsg --wraps='npm list --global' --description 'alias nlsg=npm list --global'
|
|
if type -f npm &>/dev/null
|
|
npm list --global $argv
|
|
else
|
|
missing_package npm
|
|
end
|
|
end
|