UNPKG

sui-direct

Version:

Decentralized version control system on SUI blockchain

8 lines (7 loc) 200 B
import { existsSync } from "fs"; import { join } from "path"; export default class VCS { static checkInitalized(path: string): boolean { return existsSync(join(path, "/.direct")); } }