0.1.0 • Published 9 years ago

extend-functions v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

extend-functions

Extends a target objects with functions from the source object, keeping the context of the source object.

Dependency Status Build Status npm version

Installation

npm install --save extend-functions

Usage

var extendFunctions = require('extend-functions');

var source = {
  msg: 'Hello world!',
  log: function() {
    console.log(this.msg);
  }
};
var target = {};

extendFunctions(target, source);

target.log(); /* Will print `Hello world!` */

License

MIT

0.1.0

9 years ago