mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Don't mark text-utils methods as public
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user