Socket
Socket
Sign inDemoInstall

extract-opts

Package Overview
Dependencies
3
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

extract-opts


Version published
Weekly downloads
95K
decreased by-16.98%
Maintainers
2
Created
Weekly downloads
 

Changelog

Source

v3.4.0 2019 November 13

  • Updated dependencies, base files, and editions using boundation

Readme

Source

Extract Options & Callback

Travis CI Build Status NPM version NPM downloads Dependency Status Dev Dependency Status
Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Extract the options and callback from a function's arguments easily

Install

npm

  • Install: npm install --save extract-opts
  • Require: require('extract-opts')

jspm

<script type="module">
    import * as pkg from '//dev.jspm.io/extract-opts'
</script>

Editions

This package is published with the following editions:

  • extract-opts aliases extract-opts/index.js which uses Editions to automatically select the correct edition for the consumers environment
  • extract-opts/source/index.js is esnext source code with require for modules
  • extract-opts/edition-browsers/index.js is esnext compiled for browsers with require for modules
  • extract-opts/edition-node-0.10/index.js is esnext compiled for node.js 0.10 with require for modules

Usage

var log = console.log.bind(console)
var extractOptsAndCallback = require('extract-opts')

// fs.readFile(filename, [options], callback)
function readFile (filename, opts, next) {
	// Extract options and callback
	var args = extractOptsAndCallback(opts, next)
	opts = args[0]
	next = args[1]

	// Forward for simplicities sake
	require('fs').readFile(filename, opts, next)
}

// Test it
readFile('package.json', log)          // works with no options
readFile('package.json', null, log)    // works with null options
readFile('package.json', {next: log})   // works with just options

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)
}

# The readFile method as before

# Test it
readFile('package.json', {next: log})        # works the standard completion callback name
readFile('package.json', {complete: log})    # works with our custom completion callback name
readFile('package.json', {done: log})        # works with our custom completion callback name

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:

Sponsors

No sponsors yet! Will you be the first?

Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

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:

Keywords

FAQs

Last updated on 13 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc