Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
401 B
JavaScript
Executable File
26 lines
401 B
JavaScript
Executable File
'use strict';
|
|
|
|
const internals = {
|
|
wrapped: Symbol('wrapped')
|
|
};
|
|
|
|
|
|
module.exports = function (method) {
|
|
|
|
if (method[internals.wrapped]) {
|
|
return method;
|
|
}
|
|
|
|
let once = false;
|
|
const wrappedFn = function (...args) {
|
|
|
|
if (!once) {
|
|
once = true;
|
|
method(...args);
|
|
}
|
|
};
|
|
|
|
wrappedFn[internals.wrapped] = true;
|
|
return wrappedFn;
|
|
};
|