lookup-hash

1.0.0 • Public • Published

Usage

const lookup = require('lookup');

const hash = {
  option1: (arg1, arg2) => {
    console.log('arg1', arg1);
    console.log('arg2', arg2);
    console.log('option 1');
  },
  option2: () => console.log('option 2'),
  option3: () => console.log('strings work too!'),
  default: () => 'Default value'
};

const action = lookup(hash);

action('option1', ['arg1 text', 'arg2 text']);
action('option2');
action('option3');

const defaultResults = action();

console.log(defaultResults);

Use Case

Error handling messaging

Create a translations table which map to your KNOWN error messages. If an unknown error message is found, use a default error message.

Package Sidebar

Install

npm i lookup-hash

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • spencerspear