UNPKG

@cloudideaas/hydrainstall

Version:

Installs Windows requirements for @cloudideaas/hydra. Hydra is a app generation tool with resulting source code. Generated front-end support for Ionic/Angular. Restful service layer support for .NET Core. Back-end support for SQL Server. Other supported

16 lines 463 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Utils = void 0; class Utils { static expandPath(path) { var replaced = path.replace(/%([^%]+)%/g, function (_, n) { return process.env[n]; }); return replaced; } static sleep(time) { return new Promise((resolve) => setTimeout(resolve, time)); } } exports.Utils = Utils; //# sourceMappingURL=utils.js.map