New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

deopt

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deopt

De-optionalize a call to a function or constructor

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

deopt

De-optionalize a call to a function or constructor

// deopt a function:
var add = deopt(function(a, b) {
  return a + b
})
// then call it with an options hash
console.log('add', add({a:5, b:8}))



// It even work on "class" constructors when
// they begin with a capital letter.

function Thing(a, b) {
  this.a = a
  this.b = b
}

Thing.prototype.add = function() {
  return this.a + this.b
}

var Thang = deopt(Thing)

var thing = Thang({a:5, b:8, c:12, d:55})

console.log('add', thing.add())
console.log('is instance?', thing instanceof Thing)


// Provide a callback and do something with the result before
// returning it.

Thang = deopt(Thing, function(thing, opts) {
  thing.b += opts.c
  console.log('add', thing.add())
  return thing
})


Thang({a:5, b:8, c:12, d:55})

Keywords

FAQs

Package last updated on 06 Jun 2014

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc