chore: remove unused parameter

This commit is contained in:
Juan Picado @jotadeveloper 2019-07-28 11:44:28 +02:00 committed by GitHub
parent e319435d73
commit fcd8a7f7bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}