mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 05:33:36 +09:00
7 lines
240 B
JavaScript
7 lines
240 B
JavaScript
"use strict"
|
|
|
|
var PromisePolyfill = require("./promise/promise")
|
|
var mountRedraw = require("./mount-redraw")
|
|
|
|
module.exports = require("./request/request")(typeof window !== "undefined" ? window : null, PromisePolyfill, mountRedraw.redraw)
|