in static/js/com/cookie-banner.js [654:668]
function moveToPreviousWord() {
// Move backward until we find the first alphanumeric
while (
column - 1 >= 0 && !isCharAlphanumeric(promptText[column - 1]) &&
moveBackward()
) {
}
// Move until we find the first non-alphanumeric
while (
column - 1 >= 0 &&
isCharAlphanumeric(promptText[column - 1]) &&
moveBackward()
) {
}
}