logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Any::URI::Escape - Load URI::Escape::XS preferentially over URI::Escape

Author

       Fred Moyer, <fred@redhotpenguin.com>

Description

       URI::Escape is great, but URI::Escape::XS is faster.  This module loads URI::Escape::XS and imports the
       two most common methods if XS is installed.

       The insides of this module aren't completely shaken out yet, so patches welcome.

Name

       Any::URI::Escape - Load URI::Escape::XS preferentially over URI::Escape

See Also

       URI::Escape

       URI::Escape::XS

Synopsis

         use Any::URI::Escape;
         $escaped_url = uri_escape($url);

         # URI::Escape::XS will be used instead of URI::Escape if it is installed.

See Also