iAnonymous

Results 2 comments of iAnonymous

| 行为阶段 | 主体类型 | 主体名称 | 行为名称 | 权限名称 | 触发频次(次/秒) | 是否有相关隐私文本 | | --- | --- | --- | ----- | --- | ---- | --- |...

```javascript /** * 计算文本长度 * @param {Array|Object}} text 数组 或者 对象 */ _getTextWidth(text) { let texts = []; if (Object.prototype.toString.call(text) === '[object Object]') { texts.push(text); } else { texts =...