UNPKG

expo-atlas

Version:

Visualize React Native bundles to understand and optimize your app

12 lines 481 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getUrlFromJscSafeUrl = getUrlFromJscSafeUrl; /** * Return correctly formatted URLs from JSC safe URLs. * - input http://127.0.0.1:8081/index.bundle//&platform=ios&dev=true&minify=false * - output: http://127.0.0.1:8081/index.bundle?platform=ios&dev=true&minify=false */ function getUrlFromJscSafeUrl(jscSafeUrl) { return jscSafeUrl.replace('//&', '?'); } //# sourceMappingURL=jsc.js.map