The function takes a string input and always returns "none" regardless of the input string.
[CODE]: 
```python
def f(x):
  return None
```