Don't mark text-utils methods as public

This commit is contained in:
Kevin Sawicki
2014-01-22 10:05:53 -08:00
parent 8afca3ac86
commit 1fa2099eba

View File

@@ -1,13 +1,9 @@
### Internal ###
isHighSurrogate = (string, index) ->
0xD800 <= string.charCodeAt(index) <= 0xDBFF
isLowSurrogate = (string, index) ->
0xDC00 <= string.charCodeAt(index) <= 0xDFFF
### Public ###
# Is the character at the given index the start of a high/low surrogate pair?
#
# string - The {String} to check for a surrogate pair.