本文整理汇总了TypeScript中app-root-path.toString函数的典型用法代码示例。如果您正苦于以下问题:TypeScript toString函数的具体用法?TypeScript toString怎么用?TypeScript toString使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了toString函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: require
ci,
} from './complex';
import {
positionalDistribution,
showPositionalDistribution,
} from './util';
declare var require : (path:string)=>any;
declare var process: any;
const fs = require('fs');
const path = require('path');
const appRootPath = require('app-root-path');
// 結果を出力するところ
const OUTPATH = path.join(appRootPath.toString(), 'data.txt');
// 次元
const N = 6;
// Hamming distance
// 結果出力先ファイルをオープン
const filestream = fs.createWriteStream(OUTPATH, {
flags: 'w',
defaultEncoding: 'utf8',
});
// Hamming distance
const h = N;
// サンプル数
const iter = 3000;
开发者ID:uhyo,项目名称:enshu3-quantum,代码行数:31,代码来源:annealing-steps-distri.ts
示例2:
/// <reference path="app-root-path.d.ts" />
import * as root from 'app-root-path';
let resolvedPath: string;
resolvedPath = root.resolve('../dir');
resolvedPath = root.path;
resolvedPath = root.toString();
let resolvedModule: any = root.require('app-root-path');
root.setPath('C:\\app-root');
开发者ID:Agamnentzar,项目名称:DefinitelyTyped,代码行数:9,代码来源:app-root-path-tests.ts
注:本文中的app-root-path.toString函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论