summaryrefslogtreecommitdiff
path: root/lib/internal/once.js
blob: 1293d5e6b133c76c617a9b792231aab15119c853 (plain)
1
2
3
4
5
6
7
8
export default function once(fn) {
    return function (...args) {
        if (fn === null) return;
        var callFn = fn;
        fn = null;
        callFn.apply(this, args);
    };
}