package sp // ByteIsTolerant is a more tolerant version of ByteIs. // Where ByteIs only returns whether the byte is a 'SP' (spacing) character, as defined by IETF RFC-2616: // // SP = // // ByteIsTolerant also allows: // // HT = func ByteIsTolerant(value byte) bool { return ' ' == value || '\t' == value }