mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-07 01:19:13 +08:00
5 lines
126 B
Text
5 lines
126 B
Text
'use strict';
|
|
|
|
var inspect = require('../');
|
|
var obj = [1, 2, function f(n) { return n + 5; }, 4];
|
|
console.log(inspect(obj));
|