UNPKG

@cyber-tools/type-search

Version:

用于在DefinitelyTyped上搜索类型的命令行工具

12 lines (10 loc) 264 B
const open = require("open"); const { BASIC_GITHUB_URL } = require("@/configs/runtime.config"); module.exports = async (type) => { try { const target = [BASIC_GITHUB_URL, type].join("/"); await open(target); } catch (error) { throw error; }; };