本文整理汇总了TypeScript中username.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: asyncOra
await asyncOra('Initializing NPM Module', async () => {
const packageJSON = await readPackageJSON(path.resolve(__dirname, '../../../tmpl'));
packageJSON.productName = packageJSON.name = path.basename(dir).toLowerCase();
packageJSON.author = await username();
setInitialForgeConfig(packageJSON);
packageJSON.scripts.lint = 'echo "No linting configured"';
d('writing package.json to:', dir);
await fs.writeJson(path.resolve(dir, 'package.json'), packageJSON, { spaces: 2 });
});
示例2: getNote
/** The note used for created authorizations. */
async function getNote(): Promise<string> {
let localUsername = 'unknown'
try {
localUsername = await username()
} catch (e) {
log.error(
`getNote: unable to resolve machine username, using '${localUsername}' as a fallback`,
e
)
}
return `GitHub Desktop on ${localUsername}@${OS.hostname()}`
}