File: Date.pm

package info (click to toggle)
libjavascript-quickjs-perl 0.21-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,180 kB
  • sloc: ansic: 72,822; javascript: 7,743; perl: 1,065; makefile: 353; sh: 108
file content (71 lines) | stat: -rw-r--r-- 1,615 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package JavaScript::QuickJS::Date;

use strict;
use warnings;

=encoding utf-8

=head1 NAME

JavaScript::QuickJS::Date - JavaScript `Date` in Perl

=head1 SYNOPSIS

    my $date = JavaScript::QuickJS->new()->eval("new Date()");

    binmode \*STDOUT, ':encoding(utf-8)';
    print $date->toISOString();

=head1 DESCRIPTION

This class represents a JavaScript
L<Date|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date>
instance in Perl.

This class is not instantiated directly.

=head1 METHODS

All correspond to their JavaScript equivalents:

=over

=item * Getters:

=over

=item * C<getFullYear()>, C<getMonth()>, C<getDate()>, C<getHours()>,
C<getMinutes()>, C<getSeconds()>, C<getMilliseconds()>, C<getDay()>

=item * UTC variants of the above: C<getUTCFullYear()>, C<getUTCMonth()>,
C<getUTCDate()>, C<getUTCHours()>, C<getUTCMinutes()>, C<getUTCSeconds()>,
C<getUTCMilliseconds()>, C<getUTCDay()>

=item * Stringification: C<toString()>, C<toUTCString()>, C<toGMTString()>,
C<toISOString()>, C<toDateString()>, C<toTimeString()>, C<toLocaleString()>,
C<toLocaleDateString()>, C<toLocaleTimeString()>, C<toJSON()>

=item * C<getTime()>, C<getTimezoneOffset()>

=back

=item * Setters:

=over

=item * C<setFullYear()>, C<setMonth()>, C<setDate()>, C<setHours()>,
C<setMinutes()>, C<setSeconds()>, C<setMilliseconds()>

=item * UTC variants of the above: C<setUTCFullYear()>, C<setUTCMonth()>,
C<setUTCDate()>, C<setUTCHours()>, C<setUTCMinutes()>, C<setUTCSeconds()>,
C<setUTCMilliseconds()>

=back

=back

NB: C<getYear()> and C<setYear()> are omitted by design.

=cut

1;