1
0
Fork 0
mirror of https://github.com/medialab-prado/datamad2017.git synced 2025-01-16 14:10:19 +01:00
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