From 5a8ce350548142081e60e3e2cdf79fb71206254a Mon Sep 17 00:00:00 2001 From: Faisal Salman Date: Sun, 2 Jun 2024 10:38:24 +0700 Subject: [PATCH] Insert spaces to command line output for readability --- script/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cli.js b/script/cli.js index c015bd3..785a104 100755 --- a/script/cli.js +++ b/script/cli.js @@ -1,4 +1,4 @@ #!/usr/bin/env node const UAParser = require('ua-parser-js'); -console.log(JSON.stringify(process.argv.slice(2).map(ua => UAParser(ua)))); \ No newline at end of file +console.log(JSON.stringify(process.argv.slice(2).map(ua => UAParser(ua)), null, 4)); \ No newline at end of file