diff options
Diffstat (limited to 'together/node_modules/object-inspect/example/fn.js')
-rw-r--r-- | together/node_modules/object-inspect/example/fn.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/together/node_modules/object-inspect/example/fn.js b/together/node_modules/object-inspect/example/fn.js new file mode 100644 index 0000000..9b5db8d --- /dev/null +++ b/together/node_modules/object-inspect/example/fn.js @@ -0,0 +1,5 @@ +'use strict'; + +var inspect = require('../'); +var obj = [1, 2, function f(n) { return n + 5; }, 4]; +console.log(inspect(obj)); |