1.0.1 • Published 7 years ago

function-at v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

function-at

build status codecov Code Climate

Pass functions with adjusted arguments

Usage

require('function-at');

function thenable(name) {
  if (!name) return Promise.reject(
    new TypeError('name string required'));
  var greeting = 'Hello, ' + name + '!';
  return Promise.resolve(greeting);
}

// Normal callback
function callback(error, result) {
  console.log('calback ---------------');
  console.log('  error:', error);
  console.log('  result:', result);
}

thenable('Friday')
  // On fulfillment 
  // set error to null
  .then(callback.atfirst(null))

Output:

calback ---------------
  error: null
  result: Hello, Friday!

Catch example:

// Given the thenable() and callback()
// functions definitions...

thenable() 
  // On rejection 
  // set result to empty string
  .catch(callback.atlast(''));

Catch output:

calback ---------------
  error: [TypeError: name string required]
  result: