Files
setup-haskell/node_modules/object-inspect/example/fn.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

4 lines
113 B
JavaScript

var inspect = require('../');
var obj = [ 1, 2, function f (n) { return n + 5 }, 4 ];
console.log(inspect(obj));