JSPM

extract-opts

2.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 152979
  • Score
    100M100P100Q167736F

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

Package Exports

  • extract-opts

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extract-opts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Extract Opts

Build Status NPM version Flattr this project

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

Install

  1. Install Node.js
  2. npm install --save extract-opts

Usage

var extractOpts = require('extract-opts').extractOpts;

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

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

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

History

You can discover the history inside the History.md file

License

Licensed under the incredibly permissive MIT License
Copyright © 2013+ Bevry Pty Ltd
Copyright © 2011-2012 Benjamin Arthur Lupton