-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplatter.psm1
More file actions
18 lines (15 loc) · 750 Bytes
/
Splatter.psm1
File metadata and controls
18 lines (15 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseDeclaredVarsMoreThanAssignments", "", Justification="This exports variables")]
param()
. $psScriptRoot\Find-Splat.ps1
. $psScriptRoot\Get-Splat.ps1
. $psScriptRoot\Merge-Splat.ps1
. $psScriptRoot\Out-Splat.ps1
. $psScriptRoot\Use-Splat.ps1
. $psScriptRoot\Initialize-Splatter.ps1
# Assign each splatter command to a variable for another easy way to access
${?@} = $gSplat = $GetSplat = ${function:Get-Splat}
${??@} = $fSplat = $FindSplat = ${function:Find-Splat}
${*@} = $mSplat = $MergeSplat = ${function:Merge-Splat}
${.@} = $uSplat = $UseSplat = ${function:Use-Splat}
${=>@} = $uSplat = $OutSplat = ${function:Out-Splat}
Export-ModuleMember -Alias * -Function * -Variable *