1.0.0 • Published 6 years ago

lookup-hash v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

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.