Home
last modified time | relevance | path

Searched refs:getNpmProxy (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/package-manager/src/utils/__tests__/
H A Dyarn-test.ts62 const { getNpmProxy } = require('../yarn'); constant
63 expect(getNpmProxy()).toBe('mock-value');
67 const { getNpmProxy } = require('../yarn'); constant
68 expect(getNpmProxy()).toBe(null);
72 const { getNpmProxy } = require('../yarn'); constant
73 expect(getNpmProxy()).toBe('something');
/expo/packages/@expo/package-manager/build/utils/
H A Dyarn.js6 exports.getNpmProxy = exports.isYarnOfflineAsync = void 0;
15 const proxy = getNpmProxy();
27 function getNpmProxy() { function
39 exports.getNpmProxy = getNpmProxy;
H A Dyarn.d.ts4 export declare function getNpmProxy(): string | null;
/expo/packages/@expo/package-manager/src/utils/
H A Dyarn.ts11 const proxy = getNpmProxy();
26 export function getNpmProxy(): string | null { function