2019-09-04 21:19:52 +08:00

14 lines
364 B
JavaScript

/**
* 配置选项
* @author tengge / https://github.com/tengge1
* @param {*} options 配置选项
*/
function Options(options = {}) {
this.server = options.server === undefined ? location.origin : options.server; // 服务端地址
if (!this.server.startsWith('http')) {
this.server = `http://${this.server}`;
}
}
export default Options;