logoalt Hacker News

blatantlylast Tuesday at 9:49 AM1 replyview on HN

23 byte version:

    // Lib code>>
    s={};call=(n)=>{s[n]()}
    // <<

    s.hello=()=>console.log('hello');
    call('hello');
    delete s.hello;

Replies

pavlovlast Tuesday at 9:57 AM

This is missing the subscription feature?

Multiple independent listeners should be able to attach a callback that fires when “hello” is called.