HN user

meh321

1 karma
Posts0
Comments1
View on HN
No posts found.

The second example could be more concise IMHO:

    const twitter = {
      register: function(opts){
        return request({
          url: '...',
          method: 'POST',
          ...opts
        });
      }
    }
  
    const resp = await twitter.register({ body });
EDIT: made it even more concise! -- back to real work :/