mirror of
https://git.hmsn.ink/kospo/helptalk/push.git
synced 2026-03-20 03:52:22 +09:00
6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
'use strict';
|
|
|
|
var inspect = require('../');
|
|
var obj = [1, 2, function f(n) { return n + 5; }, 4];
|
|
console.log(inspect(obj));
|