FabienDanieau's picture
first commit
2434dca
raw
history blame
132 Bytes
function level0Optimize(tokens) {
// noop as level 0 means no optimizations!
return tokens;
}
module.exports = level0Optimize;