We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Behavior of File.extname is incompatible with CRuby.
In CRuby
$ irb irb(main):001:0> File.extname('.a.rb') => ".rb" irb(main):002:0> File.extname('foo.') => "."
In mruby
$ mirb mirb - Embeddable Interactive Ruby Shell > File.extname('.a.rb') => "" > File.extname('foo.') => ".foo"
The text was updated successfully, but these errors were encountered:
Add test to ensure #5077
8b65e4b
5bfb70e
No branches or pull requests
Behavior of File.extname is incompatible with CRuby.
In CRuby
In mruby
The text was updated successfully, but these errors were encountered: