UnityEditorInternal.JSONParser.SkipWs C# (CSharp) Method

SkipWs() private method

private SkipWs ( ) : void
return void
        private void SkipWs()
        {
            string str = " \n\t\r";
            while (str.IndexOf(this.cur) != -1)
            {
                this.Next();
            }
        }
    }