We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e992b commit 373d578Copy full SHA for 373d578
t/lib/Helper.pm
@@ -1,6 +1,15 @@
1
use strictures 2;
2
# no package, so things defined here appear in the namespace of the parent.
3
4
+use 5.020;
5
+use stable 0.031 'postderef';
6
+use experimental 'signatures';
7
+use if "$]" >= 5.022, experimental => 're_strict';
8
+no if "$]" >= 5.031009, feature => 'indirect';
9
+no if "$]" >= 5.033001, feature => 'multidimensional';
10
+no if "$]" >= 5.033006, feature => 'bareword_filehandles';
11
+use open ':std', ':encoding(UTF-8)'; # force stdin, stdout, stderr into utf8
12
+
13
use JSON::PP ();
14
use constant { true => JSON::PP::true, false => JSON::PP::false };
15
0 commit comments