Method: Yajl.load

Defined in:
lib/yajl.rb

.load(str_or_io, options = {}, read_bufsize = nil, &block) ⇒ Object

For compatibility, has the same signature of Yajl::Parser.parse

[View source] [View on GitHub]

17
18
19
# File 'lib/yajl.rb', line 17

def self.load(str_or_io, options={}, read_bufsize=nil, &block)
  Parser.parse(str_or_io, options, read_bufsize, &block)
end