modules_without_dependencies = ({
'mimic-fn': await fetch("https://unpkg.com/mimic-fn@3.0.0/index.js")
.then(d => d.text())
.then(t => t.replace('const mimicFn', 'export const mimicFn'))
.then(t => t.substring(0, t.indexOf(`module.exports`)))
.then(imp)
.then(m => m.mimicFn),
'map-age-cleaner': await fetch(
"https://unpkg.com/map-age-cleaner@0.1.3/dist/index.js"
)
.then(d => d.text())
.then(t =>
t.replace('function mapAgeCleaner', 'export function mapAgeCleaner')
)
.then(t =>
t.replace(
`Object.defineProperty(exports, "__esModule", { value: true });`,
''
)
)
.then(t =>
t.replace(`const p_defer_1 = __importDefault(require("p-defer"));`, '')
)
.then(t => t.substring(0, t.indexOf(`exports.default`)))
.then(imp)
.then(m => m.mapAgeCleaner),
'p-defer': await fetch("https://unpkg.com/p-defer@3.0.0/index.js")
.then(d => d.text())
.then(t => t.replace('const pDefer', 'export const pDefer'))
.then(t => t.substring(0, t.indexOf(`module.exports`)))
.then(imp)
.then(m => m.pDefer),
mem: await fetch("https://unpkg.com/mem@6.1.0/index.js")
.then(d => d.text())
.then(t => t.replace('const mem', 'export const mem'))
.then(t => t.replace(`const mimicFn = require('mimic-fn');`, ''))
.then(t =>
t.replace(`const mapAgeCleaner = require('map-age-cleaner');`, '')
)
.then(t => t.substring(0, t.indexOf(`module.exports`)))
.then(imp)
.then(m => m.mem)
})