(
function
() {
const escapes = [];
for
(
var
i = 0; i < 32; ++i) {
var
hex = i.toString(16);
if
(i < 0x10)
escapes[i] =
'\\u000'
+ hex;
else
escapes[i] =
'\\u00'
+ hex;
escapes[0x8] =
'\\b'
;
escapes[0x9] =
'\\t'
;
escapes[0xa] =
'\\n'
;
escapes[0xc] =
'\\f'
;
escapes[0xd] =
'\\r'
;
}
Object.defineProperty(
this
.console,
'log'
, {
value:
function
() {
__perl__.modules.console.log(format(arguments));
}, writable:
true
, enumerable:
false
, configurable:
true
});
Object.defineProperty(
this
.console,
'warn'
, {
value:
function
() {
__perl__.modules.console.warn(format(arguments));
}, writable:
true
, enumerable:
false
, configurable:
true
});
Object.defineProperty(
this
.console,
'error'
, {
value:
function
() {
__perl__.modules.console.error(format(arguments));
}, writable:
true
, enumerable:
false
, configurable:
true
});
function
format(args) {
const output = [];
var
i = 0;
if
(args.length > 1 &&
'string'
===
typeof
args[0]
&& args[0].match(/%[sjdif%]/)) {
++i;
var
fmt = args[0];
var
interpolated = fmt.replace(/%(.)/g,
function
(match, p1) {
if
(i >= args.length)
return
'%'
+ p1;
switch
(p1) {
case
'd'
:
return
Number(args[i++]);
case
's'
:
return
String(args[i++]);
case
'f'
:
return
parseFloat(args[i++]);
case
'i'
:
return
;
case
'j'
:
var
retval;
try
{
retval = JSON.stringify(args[i++]);
}
catch
(e) {
retval = args[--i];
}
return
retval;
case
'o'
:
case
'O'
:
return
inspect(args[i++]);
case
'%
':
return '
%
';
default:
return '
%
' + p1;
}
});
output.push(interpolated);
}
for (; i < args.length; ++i) {
output.push(inspect(args[i]));
}
return output.join('
');
}
function stringify(obj) {
return obj.replace(/[\u0000-\u001f\\'
]/g,
function
(match) {
if
(match ===
"'"
)
return
"\\'"
;
else
if
(match ===
'\\'
)
return
'\\\\'
;
else
return
escapes[match.charCodeAt(0)];
});
}
function
objectType(obj) {
if
(obj ===
null
) {
return
'null'
;
}
else
if
(
'[object Array]'
=== toString.call(obj)) {
return
'array'
;
}
else
{
return
'object'
;
}
}
function
inspect(root) {
var
seen = [];
var
depth = 0;
const inspectRecursive =
function
(tokens, obj) {
++depth;
var
type =
typeof
obj;
if
(
'object'
=== type) type = objectType(obj);
if
(
'array'
=== type) {
if
(seen.indexOf(obj) !== -1) {
tokens.push(
'[Circular]'
);
return
;
}
seen.push(obj);
tokens.push(
'['
);
for
(
var
i = 0; i < obj.length; ++i) {
if
(i !== 0) tokens.push(
', '
);
const item = obj[i];
Array.prototype.push.apply(tokens,
inspectRecursive(tokens, item));
}
tokens.push(
']'
);
}
else
if
(
'object'
=== type) {
if
(seen.indexOf(obj) !== -1) {
tokens.push(
'[Circular]'
);
return
;
}
seen.push(obj);
tokens.push(
'{'
);
var
count = 0;
for
(
var
prop
in
obj) {
if
(!obj.hasOwnProperty(prop))
continue
;
if
(count++) tokens.push(
', '
);
if
(prop.match(/^[_a-zA-Z][_a-zA-Z0-9]*$/)) {
tokens.push(prop +
': '
);
}
else
{
tokens.push(
"'"
+ stringify(prop) +
"': "
);
}
Array.prototype.push.apply(tokens,
inspectRecursive(tokens,
obj[prop]))
}
tokens.push(
'}'
);
}
else
if
(
'string'
=== type) {
if
(depth !== 1) {
tokens.push(
"'"
+ stringify(obj) +
"'"
);
}
else
{
tokens.push(obj);
}
}
else
if
(
'function'
=== type) {
tokens.push(
'[Function]'
);
}
else
if
(
'null'
=== type) {
tokens.push(
'null'
);
}
else
if
(
'undefined'
=== type) {
tokens.push(
'undefined'
);
}
else
if
(
'number'
=== type) {
tokens.push(obj);
}
else
{
tokens.push(obj);
}
}
const output = [];
inspectRecursive(output, root);
return
output.join(
''
);
}
})();