# File lib/compass/configuration/data.rb, line 80
      def asset_cache_buster(&block)
        if block_given?
          @asset_cache_buster = block
        else
          if @asset_cache_buster
            @asset_cache_buster
          elsif inherited_data.respond_to?(:asset_cache_buster)
            inherited_data.asset_cache_buster
          end
        end
      end