UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

13 lines (11 loc) 199 B
'use strict'; module.exports = function once(fn) { let called = false; return function() { if (called) { return; } called = true; return fn.apply(null, arguments); }; };