From 698140b1f7821eea25119898ef60c5aacc888390 Mon Sep 17 00:00:00 2001 From: x13machine Date: Mon, 11 Mar 2019 15:33:58 -0500 Subject: [PATCH] readd slice to tees/index.js --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index 8e2f30c0bdb..29b19bc5de1 100644 --- a/test/index.js +++ b/test/index.js @@ -582,7 +582,7 @@ function main(argv) { if (!module.parent) { process.title = 'marked'; - process.exit(main(process.argv) ? 0 : 1); + process.exit(main(process.argv.slice()) ? 0 : 1); } else { exports = main; exports.main = main;