Method: String#decode_uri

Defined in:
opal/browser/utils.rb

#decode_uriString

Deprecated.

Please use FormData.decode_uri

Decode as URI.

Returns:

  • (String)

    the string decoded as URI


129
130
131
132
# File 'opal/browser/utils.rb', line 129

def decode_uri
  warn "opal-browser: String#decode_uri is deprecated. Please use FormData.decode_uri"
  FormData.decode_uri(self)
end