I'm working on form validation in Angular and while reading the API I came across nullValidator. It says it's a "Validator that performs no operation.", which sounds to me like it is a validator that doesn't actually do anything. When I checked the code on github, this turned out to be correct. It just returns null.
So my question is, why does nullValidator exist? What purpose does it serve?