Sha256: 1ace0e78e14a64fef7cec8eb31a8e467222eafeb1949a5c5ce340bbeb1224c10

Contents?: true

Size: 272 Bytes

Versions: 4

Compression:

Stored size: 272 Bytes

Contents

module Jass
  class ES6Processor
    class << self
      def instance
        @instance ||= new
      end
      
      def call(input)
        instance.call(input)
      end
    end
    
    def call(input)
      { data: Compiler.compile(input[:data]) }
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jass-0.9.5 lib/jass/es6_processor.rb
jass-0.9.4 lib/jass/es6_processor.rb
jass-0.9.3 lib/jass/es6_processor.rb
jass-0.9.1 lib/jass/es6_processor.rb