UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

10 lines 286 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateId = generateId; /** * Generates a unique ID for use in testing */ function generateId() { return `test-${Math.random().toString(36).substring(2, 9)}`; } //# sourceMappingURL=utils.js.map