generate-license-file
Version:
Generates a text file containing all of the licenses for your production dependencies
11 lines • 395 B
JavaScript
;
// istanbul ignore file
Object.defineProperty(exports, "__esModule", { value: true });
exports.fetchString = void 0;
const tslib_1 = require("tslib");
const fetchString = (url) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
const response = yield fetch(url);
return response.text();
});
exports.fetchString = fetchString;
//# sourceMappingURL=http.utils.js.map