public checkModuleExist()

in vscode-extension/src/powershell.ts [48:55]


    public checkModuleExist(moduleName: string): boolean {
        const systemModulePath = this.getSystemModulePath();

        return systemModulePath.some(
            moduleFolder => fs.existsSync(path.resolve(moduleFolder, moduleName))
        );

    }