Skip to content

Commit

Permalink
Merge branch 'dev' into english_translation_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
steve02081504 authored Jan 2, 2024
2 parents 7050b4d + 3fab102 commit 448a0c4
Show file tree
Hide file tree
Showing 13 changed files with 59 additions and 31 deletions.
27 changes: 27 additions & 0 deletions dev/link.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { execSync } from 'child_process';
import { join } from 'path';
import { existsSync } from 'fs';

// 获取旧的 PATH 环境变量
const oldPath = process.env.PATH;

// 获取脚本的路径
const repoPath = join(__dirname, '..')

// 切换到用户的主目录
process.chdir(process.env.USERPROFILE);

// 测试node_modules/jsstp是否存在
if(!existsSync(join(process.env.USERPROFILE, 'node_modules', 'jsstp'))) {
// 如果不存在则创建软链接
execSync(`npm link ${repoPath}`);
}

// 测试node_modules是否存在
if(!existsSync(join(repoPath, 'node_modules'))) {
// 如果不存在则创建软链接
execSync(`cmd /c mklink /j "${join(repoPath, 'node_modules')}" "${join(process.env.USERPROFILE, 'node_modules')}"`);
}

// 切换回旧的路径
process.chdir(oldPath);
8 changes: 4 additions & 4 deletions dist/cn/jsstp.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ declare class info_object<key_T=PropertyKey,value_T=any> {
/**
* 基础sstp报文类
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -59,7 +59,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head 报文头
* @param {Object} info_body 对象格式的报文体
* @param {Array<String>|undefined} unknown_lines 未知行的数组
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand Down Expand Up @@ -100,7 +100,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
/**
* sstp报文类
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -111,7 +111,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str 字符串报文
* @returns {sstp_info_t} 构造的sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
8 changes: 4 additions & 4 deletions dist/en/jsstp.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ declare class info_object<key_T=PropertyKey,value_T=any> {
/**
* Base sstp message class
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -59,7 +59,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head The header of the message.
* @param {Object} info_body The body of the message in object format.
* @param {Array<String>|undefined} unknown_lines Array of unknown lines.
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand Down Expand Up @@ -100,7 +100,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
/**
* sstp message class
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -111,7 +111,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str 字符串报文
* @returns {sstp_info_t} 构造的sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
10 changes: 5 additions & 5 deletions dist/jp/jsstp.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ declare class info_object<key_T=PropertyKey,value_T=any> {
/**
* ベースsstpメッセージクラス
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -59,7 +59,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head メッセージのヘッダー。
* @param {Object} info_body オブジェクト形式のメッセージ本文。
* @param {Array<String>|undefined} unknown_lines 未知の行の配列。
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand All @@ -80,7 +80,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
*/
/*@__PURE__*/TextContent(): String;
/**
* JSON.stringify` で使用するオブジェクトを取得する。
* `JSON.stringify` で使用するオブジェクトを取得する。
* @returns {Object} `JSON.stringify` で使用するオブジェクト。
* @ignore
*/
Expand All @@ -100,7 +100,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
/**
* SSTPメッセージクラス
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -111,7 +111,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str メッセージ文字列
* @returns {sstp_info_t} 構築された sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
"build:doc": "npm run build:doc:cn && npm run build:doc:en && npm run build:doc:jp",

"build:all": "npm run build:dist && npm run build:doc",
"prepublish": "npm run build"
"link": "npm run dev/link.mjs",
"prepublish": "npm run build:dist"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/.decls/cn/types/base_sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Option: notranslate
/**
* 基础sstp报文类
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -23,7 +23,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head 报文头
* @param {Object} info_body 对象格式的报文体
* @param {Array<String>|undefined} unknown_lines 未知行的数组
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand Down
4 changes: 2 additions & 2 deletions src/.decls/cn/types/sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Option: notranslate
/**
* sstp报文类
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -25,7 +25,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str 字符串报文
* @returns {sstp_info_t} 构造的sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
4 changes: 2 additions & 2 deletions src/.decls/en/types/base_sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Consists of a fixed header line and an optional set of message lines, with \r\n
/**
* Base sstp message class
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -23,7 +23,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head The header of the message.
* @param {Object} info_body The body of the message in object format.
* @param {Array<String>|undefined} unknown_lines Array of unknown lines.
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand Down
4 changes: 2 additions & 2 deletions src/.decls/en/types/sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Consists of a fixed header line and an optional set of message lines, with \r\n
/**
* sstp message class
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -25,7 +25,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str 字符串报文
* @returns {sstp_info_t} 构造的sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0Testing!\\u\\s[10]It's a test.\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
6 changes: 3 additions & 3 deletions src/.decls/jp/types/base_sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Option: notranslate
/**
* ベースsstpメッセージクラス
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -23,7 +23,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
* @param {String} info_head メッセージのヘッダー。
* @param {Object} info_body オブジェクト形式のメッセージ本文。
* @param {Array<String>|undefined} unknown_lines 未知の行の配列。
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head: String, info_body: Object, unknown_lines?: String[]);
Expand All @@ -44,7 +44,7 @@ declare class base_sstp_info_t<key_T=PropertyKey,value_T=any> extends info_objec
*/
/*@__PURE__*/TextContent(): String;
/**
* JSON.stringify` で使用するオブジェクトを取得する。
* `JSON.stringify` で使用するオブジェクトを取得する。
* @returns {Object} `JSON.stringify` で使用するオブジェクト。
* @ignore
*/
Expand Down
4 changes: 2 additions & 2 deletions src/.decls/jp/types/sstp_info_t.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Option: notranslate
/**
* SSTPメッセージクラス
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -25,7 +25,7 @@ declare class sstp_info_t extends base_sstp_info_t<string,string> {
* @param {String} str メッセージ文字列
* @returns {sstp_info_t} 構築された sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTP Client\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str: String);
/**
Expand Down
4 changes: 2 additions & 2 deletions src/types/base_sstp_info_t.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Option: notranslate
/**
* 基础sstp报文类
* @example
* let info = jsstp.base_sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.base_sstp_info_t
Expand All @@ -41,7 +41,7 @@ class base_sstp_info_t extends info_object {
* @param {String} info_head 报文头
* @param {Object} info_body 对象格式的报文体
* @param {Array<String>|undefined} unknown_lines 未知行的数组
* @see {@link sstp_info_t.from_string}
* @see {@link sstp_info_t.constructor}
* @ignore
*/
/*@__PURE__*/constructor(info_head, info_body, unknown_lines) {
Expand Down
4 changes: 2 additions & 2 deletions src/types/sstp_info_t.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Option: notranslate
/**
* sstp报文类
* @example
* let info = jsstp.sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = jsstp.new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* console.log(info.head);//SSTP/1.4 200 OK
* console.log(info.Option);//notranslate
* @alias jsstp.sstp_info_t
Expand All @@ -36,7 +36,7 @@ class sstp_info_t extends base_sstp_info_t {
* @param {String} str 字符串报文
* @returns {sstp_info_t} 构造的sstp_info_t
* @example
* let info = sstp_info_t.from_string("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
* let info = new sstp_info_t("SSTP/1.4 200 OK\r\nCharset: UTF-8\r\nSender: SSTPクライアント\r\nScript: \\h\\s0テストー。\\u\\s[10]テストやな。\r\nOption: notranslate\r\n\r\n");
*/
/*@__PURE__*/constructor(str) {
let [head, ...lines] = split_sstp_text(str);
Expand Down

0 comments on commit 448a0c4

Please sign in to comment.