This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > ./utax/On.js | |
| ./utax/assign.js | |
| ./lib/SDK.js | |
| ./utax/web/tld.js | |
| ./utax/sleep.js | |
| + USER, INIT_RESOLVE, TAB_ID, _setUser, unbindBeforeunload | |
| same_host = do => | |
| dot_host = '.'+tld |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > ~/R > R R_ID | |
| @iuser/time > Second | |
| @iuser/camel | |
| CACHE = new Map | |
| MINUTE = 61 | |
| < new Proxy( | |
| {} | |
| get:(_, name)=> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- PostgreSQL database dump | |
| -- | |
| SET statement_timeout = 0; | |
| SET lock_timeout = 0; | |
| SET idle_in_transaction_session_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- PostgreSQL database dump | |
| -- | |
| SET statement_timeout = 0; | |
| SET lock_timeout = 0; | |
| SET idle_in_transaction_session_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| impl<T0, T1> FromNapiValue for (T0, T1) | |
| where | |
| T0: FromNapiValue, | |
| T1: FromNapiValue, | |
| { | |
| tuple_from_napi_value!(2, 0, 1); | |
| } | |
| impl<T0, T1, T2> FromNapiValue for (T0, T1, T2) | |
| where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| impl<T0,T1> FromNapiValue for (T0,T1) where | |
| T0: FromNapiValue, | |
| T1: FromNapiValue | |
| { | |
| arr_get!(2, 0 1) | |
| } | |
| impl<T0,T1,T2> FromNapiValue for (T0,T1,T2) where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| impl<T0,T1> FromNapiValue for (T0,T1) where | |
| T0: FromNapiValue, | |
| T1: FromNapiValue | |
| { | |
| unsafe fn from_napi_value(env: sys::napi_env, napi_val: sys::napi_value) -> Result<Self> { | |
| arr_get!(env, napi_val, arr, 0,1) | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| impl<T0,T1> FromNapiValue for (T0,T1) where | |
| T0: FromNapiValue, | |
| T1: FromNapiValue | |
| { | |
| unsafe fn from_napi_value(env: sys::napi_env, napi_val: sys::napi_value) -> Result<Self> { | |
| let arr = unsafe { Array::from_napi_value(env, napi_val)? }; | |
| if arr.len() < 1 { | |
| return Err(Error::new( | |
| Status::InvalidArg, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # XXXX 用户条款 | |
| 最新版本生效日期:2022-09-01 | |
| ## 定义和说明 | |
| 《XXXX 用户条款》(以下简称“本协议”)是用户(以下简称“用户”或您)与 XXXX 之间的协议,XXXX 将按照本协议约定之内容为您提供服务。请您务必审慎阅读、充分理解各条款内容,若您不同意本协议中所述任何条款或其后对协议条款的修改,请您不要使用 XXXX 及相关服务。您的使用行为将视作对本协议全部条款的完全接受。如果您是未成年人,请在法定监护人的陪同下阅读和判断是否同意本协议,特别注意未成年人使用条款。未成年人行使和履行本协议项下的权利和义务视为已获得监护人的认可。 | |
| ## 账户的注册、使用 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const UI_PREFIX = 'i-'; | |
| function $ELEMENT(name,o) { | |
| return customElements.define(UI_PREFIX+name,o) | |
| } | |
| import { i18nOnMount, I18N } from './i18n.js'; | |
| // node_modules/.pnpm/[email protected]/node_modules/svelte/internal/index.mjs | |
| function noop() { | |
| } | |
| function run(fn) { | |
| return fn(); |