msw
Version:
14 lines • 543 B
JavaScript
import { invariant } from "outvariant";
import { devUtils } from './devUtils.mjs';
function checkGlobals() {
invariant(
typeof URL !== "undefined",
devUtils.formatMessage(
`Global "URL" class is not defined. This likely means that you're running MSW in an environment that doesn't support all Node.js standard API (e.g. React Native). If that's the case, please use an appropriate polyfill for the "URL" class, like "react-native-url-polyfill".`
)
);
}
export {
checkGlobals
};
//# sourceMappingURL=checkGlobals.mjs.map