| 1 2 3 4 5 6 7 8 9 | 18x | import {CONTROL_REGEX} from '@constants/regex-control'
import {hexCharCode} from '@fn/hex-char-code'
import {mapWrap} from '@fn/map-wrap'
export const controlSplit = (char) => (CONTROL_REGEX.test(char) ?
mapWrap(hexCharCode, char) :
char
)
|