fix: linter error fixed (#143)

This commit is contained in:
Gagan Deep
2019-10-03 01:22:27 +05:30
committed by Juan Picado @jotadeveloper
parent cf050f234d
commit 74576bda12
5 changed files with 17 additions and 17 deletions

View File

@@ -56,7 +56,7 @@ export function formatDateDistance(lastUpdate): string {
return distanceInWordsToNow(new Date(lastUpdate));
}
export function buildScopePackage(scope: string, packageName: string) {
export function buildScopePackage(scope: string, packageName: string): string {
return `@${scope}/${packageName}`;
}