@weverson_na/prisma-generator-nestjs-dto
Version:
Advanced Prisma Generator with Smart Merge v2: Creates DTO and Entity classes with AST-based preservation, intelligent import management, and modular architecture for NestJS
13 lines (12 loc) • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ArrayHelper = void 0;
class ArrayHelper {
static uniq(input) {
return Array.from(new Set(input));
}
static concatIntoArray(source, target) {
source.forEach((item) => target.push(item));
}
}
exports.ArrayHelper = ArrayHelper;