ken_nogi/NodeJS/LINEWORKS_Pleasanter/node_modules/object-inspect/example/fn.js
Kenichiro NOGI 51a95c5e21 NodeJS
2025-07-10 10:12:37 +09:00

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));