• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript Q.nfcall函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中Q.nfcall函数的典型用法代码示例。如果您正苦于以下问题:TypeScript nfcall函数的具体用法?TypeScript nfcall怎么用?TypeScript nfcall使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了nfcall函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1:

 return Q.nfcall<fs.Stats>(fs.stat, p).then((stats: fs.Stats) => {
     if (stats.isDirectory()) {
         return Q.nfcall<string[]>(fs.readdir, p).then((childPaths: string[]) => {
             let result = Q<void>(void 0);
             childPaths.forEach(childPath =>
                 result = result.then<void>(() => this.removePathRecursivelyAsync(path.join(p, childPath))));
             return result;
         }).then(() =>
             Q.nfcall<void>(fs.rmdir, p));
     } else {
         /* file */
         return Q.nfcall<void>(fs.unlink, p);
     }
 });
开发者ID:ajwhite,项目名称:vscode-react-native,代码行数:14,代码来源:fileSystem.ts


示例2: runTest

    function runTest(testFileName: string) {
        const testFilePath = path.resolve(__dirname, '..', 'fixtures', testFileName);

        logger.info({testFilePath: testFilePath}, 'Running test file');

        return q.nfcall(tmp.file.bind(tmp), {postfix: '.js'})
            .spread(function(jsOutputFilePath: string) {
                logger.info({jsOutputFilePath: jsOutputFilePath, lsc: lsc}, 'Compiling to js output');
                return lsc(testFilePath, jsOutputFilePath)
                    .then(function() {
                        const command = `node ${jsOutputFilePath}`;
                        logger.info({command: command}, 'Spawning node on generated js');
                        return q.nfcall(child_process.exec.bind(child_process), command);
                    })
                    .fail(function(err: any) {
                        logger.error(err, 'lsc failed');
                        throw err;
                    });
            }).spread(function(stdout: Buffer, stderr: Buffer) {
                if (stderr.length) {
                   throw new Error(stderr.toString());
                }

                logger.info({stdout: stdout.toString()}, 'Nodejs spawn complete');
                return stdout.toString();
            });
    }
开发者ID:NickHeiner,项目名称:lambdascript,代码行数:27,代码来源:index.ts


示例3: getHistoryModel

export function getHistoryModel(
    options,
    basePath = remote.app.getPath('userData')
) {
    let buffer: any[] = []
    let promise = q()
    const fileName = basePath + '/' + options.file
    const history = {
        push(item) {
            promise = promise.then(() => {
                buffer.splice(0, 0, item)
                if (buffer.length > options.max) {
                    buffer = buffer.slice(0, options.min)
                }
                return q.nfcall(
                    writeFile,
                    fileName,
                    buffer.map(obj => JSON.stringify(obj)).join(',')
                )
            })
            return promise
        },
        list: () => buffer,
    }
    return q.nfcall(readFile, fileName).then(
        content => {
            buffer = JSON.parse('[' + content + ']')
            return history
        },
        () => history
    )
}
开发者ID:jakobrun,项目名称:gandalf,代码行数:32,代码来源:history.ts


示例4: file

 Q.all([Q.nfcall(fs.exists, jsconfigPath), Q.nfcall(fs.exists, tsconfigPath)]).spread((jsExists: boolean, tsExists: boolean) => {
     if (!jsExists && !tsExists) {
         Q.nfcall(fs.writeFile, jsconfigPath, "{}").then(() => {
             // Any open file must be reloaded to enable intellisense on them, so inform the user
             vscode.window.showInformationMessage("A 'jsconfig.json' file was created to enable IntelliSense. You may need to reload your open JS file(s).");
         });
     }
 });
开发者ID:dahomost,项目名称:vscode-cordova,代码行数:8,代码来源:cordova.ts


示例5:

            .then(function(exists: boolean) {
                if (!exists) {
                    return Q.nfcall(child_process.exec, `npm install --prefix ${typeScriptNextDest} typescript@next`)
                        .then(() => { return true; });
                }

                return isRestartRequired;
            });
开发者ID:ajwhite,项目名称:vscode-react-native,代码行数:8,代码来源:intellisenseHelper.ts


示例6: findFilesByExtension

 public findFilesByExtension(folder: string, extension: string): Q.Promise<string[]> {
     return Q.nfcall(fs.readdir, folder).then((files: string[]) => {
         const extFiles = files.filter((file: string) => path.extname(file) === `.${extension}`);
         if (extFiles.length === 0) {
             throw new Error(`Unable to find any ${extension} files.`);
         }
         return extFiles;
     });
 }
开发者ID:ajwhite,项目名称:vscode-react-native,代码行数:9,代码来源:fileSystem.ts


示例7: exists

 /**
  *  Helper (asynchronous) function to check if a file or directory exists
  */
 public exists(filename: string): Q.Promise<boolean> {
     return Q.nfcall(fs.stat, filename)
         .then(function() {
             return Q.resolve(true);
         })
         .catch(function(err) {
             return Q.resolve(false);
         });
 }
开发者ID:ajwhite,项目名称:vscode-react-native,代码行数:12,代码来源:fileSystem.ts


示例8:

 promise = promise.then(() => {
     buffer.splice(0, 0, item)
     if (buffer.length > options.max) {
         buffer = buffer.slice(0, options.min)
     }
     return q.nfcall(
         writeFile,
         fileName,
         buffer.map(obj => JSON.stringify(obj)).join(',')
     )
 })
开发者ID:jakobrun,项目名称:gandalf,代码行数:11,代码来源:history.ts


示例9: getBundleIdentifier

 public static getBundleIdentifier(projectRoot: string): Q.Promise<string> {
     return Q.nfcall(fs.readdir, path.join(projectRoot, 'platforms', 'ios')).then((files: string[]) => {
         let xcodeprojfiles = files.filter((file: string) => /\.xcodeproj$/.test(file));
         if (xcodeprojfiles.length === 0) {
             throw new Error('Unable to find xcodeproj file');
         }
         let xcodeprojfile = xcodeprojfiles[0];
         let projectName = /^(.*)\.xcodeproj/.exec(xcodeprojfile)[1];
         let plist = pl.parseFileSync(path.join(projectRoot, 'platforms', 'ios', projectName, projectName + '-Info.plist'));
         return plist.CFBundleIdentifier;
     });
 }
开发者ID:Paradox-Cascade,项目名称:vscode-cordova,代码行数:12,代码来源:cordovaIosDeviceLauncher.ts


示例10: ensureNuGetDownloads

async function ensureNuGetDownloads(): Promise<void> {
    if (!fs.existsSync(tempDir)) {
        await Q.nfcall(fs.mkdir, tempDir);
    }

    for (let i of nuGetVersions) {
        if (!fs.existsSync(i.filePath)) {
            // tslint:disable-next-line
            console.log(`Downloading ${i.url} to ${i.filePath}`);
            await download(i.url, i.filePath);
        }
    }
}
开发者ID:ReneSchumacher,项目名称:VSTS-Tasks,代码行数:13,代码来源:readNuGetExeFileVersion.ts



注:本文中的Q.nfcall函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript Q.ninvoke函数代码示例发布时间:2022-05-25
下一篇:
TypeScript Q.nbind函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap