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

15 lines (11 loc) 359 B
export class Utils { public static expandPath(path : string) : string { var replaced = path.replace(/%([^%]+)%/g, function(_,n) { return process.env[n]; }); return replaced; } public static sleep(time) : Promise<{}> { return new Promise((resolve) => setTimeout(resolve, time)); } }