Extract the options and callback from a function's arguments easily
Install
- Use:
require('extract-opts')
- Install:
npm install --save extract-opts
- Use:
require('extract-opts')
- Install:
npm install --save extract-opts
- CDN URL:
//wzrd.in/bundle/extract-opts@3.0.1
- Use:
require('extract-opts')
- Install:
ender add extract-opts
Usage
var extractOpts = require('extract-opts')
var readFile = function(filename, opts, callback){
var args = extractOpts(opts, callback)
opts = args[0]
callback = args[1]
require('fs').readFile(filename, opts, callback)
};
var next = console.log.bind(console)
readFile('package.json', next)
readFile('package.json', null, next)
readFile('package.json', {next:next})
History
Discover the change history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
Become a contributor!
License
Unless stated otherwise all works are:
and licensed under: