coder
coder copied to clipboard
Handle encodings, no matter the Ruby version, Operating System and installed libraries
Results
2
coder issues
Sort by
recently updated
recently updated
newest added
Comparing the names is much less efficient than comparing the instance directly. It may also change in the future: https://bugs.ruby-lang.org/issues/18576
``` irb(main):001:0> require 'coder' => true irb(main):002:0> string = 'a' => "a" irb(main):003:0> string.taint => "a" irb(main):004:0> string.tainted? => true irb(main):005:0> Coder.clean(string).tainted? => false ```