mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
14 lines
364 B
JavaScript
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; |