mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 05:01:23 +01:00
8 lines
152 B
Ruby
8 lines
152 B
Ruby
|
class Sass::Tree::Visitors::Perform < Sass::Tree::Visitors::Base
|
||
|
|
||
|
# Removes all comments completely
|
||
|
def visit_comment(node)
|
||
|
return []
|
||
|
end
|
||
|
|
||
|
end
|