package Data::Sah::Filter::js::Str::lcfirst;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2020-06-04'; # DATE
our $DIST = 'Data-Sah-Filter'; # DIST
our $VERSION = '0.008'; # VERSION
use 5.010001;
use strict;
use warnings;
sub meta {
+{
v => 1,
summary => 'Convert first character of string to lowercase',
target_type => 'str',
};
}
sub filter {
my %args = @_;
my $dt = $args{data_term};
my $res = {};
$res->{expr_filter} = "(function (_m) { _m = $dt; return _m.charAt(0).toLowerCase() + _m.substring(1) })()";
$res;
}
1;
# ABSTRACT: Convert first character of string to lowercase
__END__
=pod
=encoding UTF-8
=head1 NAME
Data::Sah::Filter::js::Str::lcfirst - Convert first character of string to lowercase
=head1 VERSION
This document describes version 0.008 of Data::Sah::Filter::js::Str::lcfirst (from Perl distribution Data-Sah-Filter), released on 2020-06-04.
=head1 SYNOPSIS
Use in Sah schema's C<prefilters> (or C<postfilters>) clause:
["str","prefilters",["Str::lcfirst"]]
=for Pod::Coverage ^(meta|filter)$
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah-Filter>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-Data-Sah-Filter>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Sah-Filter>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 SEE ALSO
Related filters: L<ucfirst|Data::Sah::Filter::js::Str::ucfirst>.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut