remove pointless overloads
[scpubgit/HTML-String.git] / lib / HTML / String.pm
CommitLineData
e1b4b35c 1package HTML::String;
2
3use strictures 1;
4use HTML::String::Value;
5use Exporter 'import';
6
7our @EXPORT = qw(html);
8
9sub html {
10 HTML::String::Value->new($_[0]);
11}
12
131;