0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-13 22:48:31 -05:00
verdaccio/test/cli/cli-commons/src/web.ts

6 lines
162 B
TypeScript
Raw Normal View History

import got from 'got';
export function callRegistry(url: string): Promise<string> {
return got.get(url, { headers: { Accept: 'application/json' } }).json();
}