UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

9 lines • 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.argsOrArgArray = void 0; var isArray = Array.isArray; function argsOrArgArray(args) { return args.length === 1 && isArray(args[0]) ? args[0] : args; } exports.argsOrArgArray = argsOrArgArray; //# sourceMappingURL=argsOrArgArray.js.map