class Opal::PathReader
def read(path)
def read(path) full_path = expand(path) return nil if full_path.nil? File.open(full_path, 'rb:UTF-8', &:read) if File.exist?(full_path) end
def read(path) full_path = expand(path) return nil if full_path.nil? File.open(full_path, 'rb:UTF-8', &:read) if File.exist?(full_path) end