From bde2d5d7f9b1c0aeeb230995fcee868e3e59f131 Mon Sep 17 00:00:00 2001 From: mrwnmncd <69033265+mrwnmncd@users.noreply.github.com> Date: Sun, 18 Aug 2024 23:38:12 +0800 Subject: [PATCH] add a newline to the result to remove the percentage in the CLI output --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 7fa3b7f..cb8b739 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -1,4 +1,4 @@ #! /usr/bin/env node var ULID = require('../dist/index.umd.js') -process.stdout.write(ULID.ulid()) +process.stdout.write(ULID.ulid() + '\n')