system-prompts-and-models-o.../unified-ai-platform/node_modules/@hapi/hoek/lib/once.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04:00

26 lines
401 B
JavaScript

'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;
};