Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 778 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 778 Bytes

hjson-powershell psgallery psgallery

Simple powershell module for conversion between HJSON and JSON. It't wrapper of hjson-cs. You can found more information about hjson at https://hjson.org/.

Instalation

Install-Module -Name HJSON

Usage

Convert Json to HJson

$hjsonString = ConvertTo-HJson -Path "C:\someJsonFile.json"

Convert HJson to Json

$jsonString = ConvertFrom-HJson -Path "C:\someHJsonFile.hjson"