package ini

import (
	
)
isWhitespace will return whether or not the character is a whitespace character. Whitespace is defined as a space or tab.
func ( rune) bool {
	return unicode.IsSpace() &&  != '\n' &&  != '\r'
}

func ( []rune) (Token, int, error) {
	 := 0
	for ;  < len(); ++ {
		if !isWhitespace([]) {
			break
		}
	}

	return newToken(TokenWS, [:], NoneType), , nil