Functions/Get-Puppeteer_CloseFunctionDeclaration.ps1
<#
.SYNOPSIS This function returns the JS code snippet for closing a function declaration. #> function Get-Puppeteer_CloseFunctionDeclaration { [CmdletBinding(PositionalBinding=$true)] [OutputType([String])] param () return "}" } |