New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

objbind

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

objbind

bind all the functions on an object

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

objbind

objbind takes an object and returns an object that inherits from it with all the enumerable functions bound to the first object. confused? here's an example:

var winston = require('winston')
  , objbind = require('objbind')
  , myWinston = objbind(winston, 'nathan says')
myWinston.info('hi')
console.log(myWinston.loggers === winston.loggers)

output:

info: nathan says hi
true

objbind(obj, args...)

  • newObj = Object.create(obj)
  • for each enumerable function property of obj, assign fn.bind(obj, args...) to the same key on newObj
  • return newObj

Keywords

bind

FAQs

Package last updated on 30 Jan 2013

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