mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Merge pull request #111 from casperisfine/better-encoding-check
Improve `Encoding` handling
This commit is contained in:
commit
e6db400607
1 changed files with 4 additions and 4 deletions
|
@ -5,15 +5,15 @@ module ExecJS
|
|||
# workaround for jruby bug http://jira.codehaus.org/browse/JRUBY-6588
|
||||
# workaround for rbx bug https://github.com/rubinius/rubinius/issues/1729
|
||||
def encode(string)
|
||||
if string.encoding.name == 'ASCII-8BIT'
|
||||
if string.encoding == ::Encoding::BINARY
|
||||
data = string.dup
|
||||
data.force_encoding('UTF-8')
|
||||
data.force_encoding(::Encoding::UTF_8)
|
||||
|
||||
unless data.valid_encoding?
|
||||
raise ::Encoding::UndefinedConversionError, "Could not encode ASCII-8BIT data #{string.dump} as UTF-8"
|
||||
raise ::Encoding::UndefinedConversionError, "Could not encode binary data #{string.dump} as UTF-8"
|
||||
end
|
||||
else
|
||||
data = string.encode('UTF-8')
|
||||
data = string.encode(::Encoding::UTF_8)
|
||||
end
|
||||
data
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue