bumps version, publicizes method

This commit is contained in:
Shannon
2016-12-23 14:52:18 +11:00
parent 6898d9b270
commit 8e06a88a2c
4 changed files with 4 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ namespace Umbraco.Core
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
internal static bool DetectIsJson(this string input)
public static bool DetectIsJson(this string input)
{
input = input.Trim();
return (input.StartsWith("{") && input.EndsWith("}"))