UNPKG

bluecodex

Version:

Turn repetitive dev tasks into CLI commands with Typescript

11 lines (8 loc) 146 B
import open from "open"; export class Os { async open(target: string) { await open(target); return; } } export const os = new Os();