initial commits
parent
65d09cee0a
commit
6c94144485
|
@ -0,0 +1,8 @@
|
|||
package sp
|
||||
|
||||
// ByteIsSpacing return whether the byte is a 'SP' (spacing) character, as defined by IETF RFC-2616.
|
||||
//
|
||||
// SP = <US-ASCII SP, space (32)>
|
||||
func ByteIsSpacing(value byte) bool {
|
||||
return ' ' == value
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
package sp
|
||||
|
||||
// RuneIsSpacing return whether the rune is a 'SP' (spacing) character, as defined by IETF RFC-2616.
|
||||
//
|
||||
// SP = <US-ASCII SP, space (32)>
|
||||
func RuneIsSpacing(value rune) bool {
|
||||
return ' ' == value
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue