I'm seeing the below function as an example of the babel plugin. What is the pre: doing in this function? I've tried with and without it and the result is the same.
function warn (message) {
pre: typeof message === 'string';
return 'Warning!\n' + message;
}
edit: Babel plugin