libuniversal-require-perl
Load modules from a variable (deprecated)
Description
This works exactly like the standard require in Perl, except without the bareword restriction, and it does not die. Since require() is placed in the UNIVERSAL namespace, it will work on any module. You just have to use UNIVERSAL::require somewhere in your code. If you have ever had to do this... eval "require $module";
to get around the bareword caveats on require(), this module is for
you. It creates a universal require() class method that will work
with every Perl module and it is secure. So instead of doing some
arcane eval() work, you can do this:
$module->require;
It does not save you much typing, but it will make a lot more sense
to someone who is not a ninth level Perl acolyte.
Also provided is a use() method which works in a similar way.
NOTE that UNIVERSAL::require is considered deprecated by its author, who
suggestest to look at a number of better suited and more actively maintained
alternatives discussed in the POD's "SEE ALSO" section.Upload more screenshots
Please help extend the collection of screenshots. Just make a screenshot and upload it here. You don't need to register or anything.
Upload a screenshotHint: upload an image here from your clipboard with Ctrl-V
Homepage
https://metacpan.org/release/UNIVERSAL-require
Install this software package
If the package is available for the distribution you are currently using on your computer then install the software by clicking on…
Install libuniversal-require-perl