Sha256: 153453c4d84a3c2f13589c37055a7daff61d48475dcce554f7eedad15fc7b3e5

Contents?: true

Size: 905 Bytes

Versions: 1024

Compression:

Stored size: 905 Bytes

Contents

// Returns a wrapper function that returns a wrapped callback
// The wrapper function should do some stuff, and return a
// presumably different callback function.
// This makes sure that own properties are retained, so that
// decorations and such are not lost along the way.
module.exports = wrappy
function wrappy (fn, cb) {
  if (fn && cb) return wrappy(fn)(cb)

  if (typeof fn !== 'function')
    throw new TypeError('need wrapper function')

  Object.keys(fn).forEach(function (k) {
    wrapper[k] = fn[k]
  })

  return wrapper

  function wrapper() {
    var args = new Array(arguments.length)
    for (var i = 0; i < args.length; i++) {
      args[i] = arguments[i]
    }
    var ret = fn.apply(this, args)
    var cb = args[args.length-1]
    if (typeof ret === 'function' && ret !== cb) {
      Object.keys(cb).forEach(function (k) {
        ret[k] = cb[k]
      })
    }
    return ret
  }
}

Version data entries

1,024 entries across 402 versions & 46 rubygems

Version Path
disco_app-0.16.1 test/dummy/node_modules/wrappy/wrappy.js
appmap-0.70.2 ./node_modules/wrappy/wrappy.js
opal-1.4.1 stdlib/nodejs/node_modules/wrappy/wrappy.js
opal-1.4.0 stdlib/nodejs/node_modules/wrappy/wrappy.js
opal-1.4.0.alpha1 stdlib/nodejs/node_modules/wrappy/wrappy.js
appmap-0.70.1 ./node_modules/wrappy/wrappy.js
appmap-0.70.0 ./node_modules/wrappy/wrappy.js
appmap-0.69.0 ./node_modules/wrappy/wrappy.js
appmap-0.68.2 ./node_modules/wrappy/wrappy.js
isomorfeus-puppetmaster-0.5.5 node_modules/wrappy/wrappy.js
appmap-0.68.1 ./node_modules/wrappy/wrappy.js
isomorfeus-puppetmaster-0.5.4 node_modules/wrappy/wrappy.js
opal-1.3.2 stdlib/nodejs/node_modules/wrappy/wrappy.js
disco_app-0.15.2 test/dummy/node_modules/wrappy/wrappy.js
appmap-0.68.0 ./node_modules/wrappy/wrappy.js
opal-1.3.1 stdlib/nodejs/node_modules/wrappy/wrappy.js
appmap-0.67.1 ./node_modules/wrappy/wrappy.js
opal-1.3.0 stdlib/nodejs/node_modules/wrappy/wrappy.js
isomorfeus-puppetmaster-0.5.3 node_modules/wrappy/wrappy.js
trusty-cms-5.0.3 node_modules/wrappy/wrappy.js