public static bool TryAsJsonString(this SciterValue sciterValue, out string value, StringConversionType conversionType = StringConversionType.JsonLiteral)
 {
     value = null;
     return(sciterValue?.TryAsJsonStringInternal(value: out value, conversionType: conversionType) == true);
 }