The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314151617 #!/usr/bin/env perluse strict;use warnings;use Mo::utils::CSS qw(check_css_unit);my $self = { 'key' => '123px',};check_css_unit($self, 'key');# Print out.print "ok\n";# Output:# ok
#!/usr/bin/env perl
use
strict;
warnings;
Mo::utils::CSS
qw(check_css_unit)
;
my
$self
= {
'key'
=>
'123px'
,
};
check_css_unit(
);
# Print out.
print
"ok\n"
# Output:
# ok