datamad2017/_sass/remove-all-comments-monkey-patch.rb
2014-08-15 00:27:17 +03:00

8 lines
No EOL
152 B
Ruby

class Sass::Tree::Visitors::Perform < Sass::Tree::Visitors::Base
# Removes all comments completely
def visit_comment(node)
return []
end
end