Extract the options and callback from a function's arguments easily
Install
- Install:
npm install --save extract-opts
- Require:
require('extract-opts')
<script type="module">
import * as pkg from '//dev.jspm.io/extract-opts'
</script>
This package is published with the following editions:
extract-opts
aliases extract-opts/source/index.js
extract-opts/source/index.js
is esnext source code with require for modulesextract-opts/edition-browsers/index.js
is esnext compiled for browsers with require for modules
Usage
var log = console.log.bind(console)
var extractOptsAndCallback = require('extract-opts')
function readFile (filename, opts, next) {
var args = extractOptsAndCallback(opts, next)
opts = args[0]
next = args[1]
require('fs').readFile(filename, opts, next)
}
readFile('package.json', log)
readFile('package.json', null, log)
readFile('package.json', {next: log})
Customisation
Extract Options and Callback also supports a third argument.
You can use this third argument to customize the completionCallbackNames
property that defaults to ['next']
.
This is useful if your completion callback has other names besides next
.
Allowing you to do the following:
var log = console.log.bind(console)
function extractOptsAndCallback (opts, next, config) {
if ( config == null ) config = {}
if ( config.completionCallbackNames == null ) config.completionCallbackNames = ['next', 'complete', 'done']
return require('extract-opts')(opts, next, config)
}
readFile('package.json', {next: log})
readFile('package.json', {complete: log})
readFile('package.json', {done: log})
History
Discover the release 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:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
License
Unless stated otherwise all works are:
and licensed under: