astro-ghostcms/.pnpm-store/v3/files/71/7316649cdf7f8fbad402aa9cd71...

8 lines
275 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import rc from 'rc';
export default function registryUrl(scope) {
const result = rc('npm', {registry: 'https://registry.npmjs.org/'});
const url = result[`${scope}:registry`] || result.config_registry || result.registry;
return url.slice(-1) === '/' ? url : `${url}/`;
}