### Description Support Format and Export value types of scriptblock ```powershell $test = @{ Name = 'test' script = { Write-Output 'Hello World' } } $test | Format-Hashtable ``` Should output: ```powershell @{ Name = 'test' script = { Write-Output 'Hello World' } } ```
Description
Support Format and Export value types of scriptblock
Should output: