Data-Sah-Coerce
view release on metacpan or search on metacpan
lib/Data/Sah/Coerce/js/To_date/From_obj/date.pm view on Meta::CPAN
package Data::Sah::Coerce::js::To_date::From_obj::date;
use 5.010001;
use strict;
use warnings;
sub meta {
+{
v => 4,
summary => 'Coerce date from Date object',
might_fail => 1, # we return error when date is invalid
prio => 50,
};
}
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-24'; # DATE
our $DIST = 'Data-Sah-Coerce'; # DIST
our $VERSION = '0.054'; # VERSION
sub coerce {
my %args = @_;
my $dt = $args{data_term};
my $res = {};
$res->{expr_match} = join(
" && ",
"($dt instanceof Date)",
);
$res->{expr_coerce} = "isNaN($dt) ? ['Invalid date', $dt] : [null, $dt]";
$res;
}
1;
# ABSTRACT: Coerce date from Date object
__END__
=pod
=encoding UTF-8
=head1 NAME
Data::Sah::Coerce::js::To_date::From_obj::date - Coerce date from Date object
=head1 VERSION
This document describes version 0.054 of Data::Sah::Coerce::js::To_date::From_obj::date (from Perl distribution Data-Sah-Coerce), released on 2023-10-24.
=head1 SYNOPSIS
To use in a Sah schema:
["date",{"x.perl.coerce_rules"=>["From_obj::date"]}]
=head1 DESCRIPTION
This is basically just to throw an error when date is invalid.
=for Pod::Coverage ^(meta|coerce)$
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah-Coerce>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-Data-Sah-Coerce>.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.
Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
( run in 0.551 second using v1.01-cache-2.11-cpan-39bf76dae61 )