* 创建库 * @param {string} index 索引 * @param {string} key 键名 * @returns {string} 库 ID
(index, key)
| 635 | if (typeof data[i] === 'object' && data[i] !== null) { |
| 636 | resolve(data[i], seen); |
| 637 | } |
| 638 | } |
| 639 | }, |
| 640 | |
| 641 | decodeUuids(data) { |
| 642 | const walk = (obj, seen) => { |
| 643 | if (!obj || typeof obj !== 'object') return; |
| 644 | if (seen.has(obj)) return; |
| 645 | seen.add(obj); |
| 646 |
nothing calls this directly
no outgoing calls
no test coverage detected