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