The function removes digits (0-9) from the input string and returns the remaining characters unmodified.

[CODE]:
```python
def remove_digits(input_string):
    return ''.join([char for char in input_string if not char.isdigit()])
```
This code approximates the behavior of the function by removing digits from the input string.