function-at

1.0.1 • Public • Published

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: 

Package Sidebar

Install

npm i function-at

Weekly Downloads

2

Version

1.0.1

License

MIT

Last publish

Collaborators

  • ecman