From fcd8a7f7bf3a8dc16413ff2bb8417da1b41ab150 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Sun, 28 Jul 2019 11:44:28 +0200 Subject: [PATCH] chore: remove unused parameter --- src/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.ts b/src/lib/utils.ts index 376ccf010..7b3178ad0 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -50,7 +50,7 @@ export function convertPayloadToBase64(payload: string): Buffer { * @param {*} name the package name * @return {Boolean} whether is valid or not */ -export function validateName(name: string, isScoped: boolean = false): boolean { +export function validateName(name: string): boolean { if (_.isString(name) === false) { return false; }