UNPKG

d3

Version:

A small, free JavaScript library for manipulating documents based on data.

8 lines (7 loc) 229 B
// A getter-setter method that preserves the appropriate `this` context. d3.rebind = function(object, method) { return function() { var x = method.apply(object, arguments); return arguments.length ? object : x; }; };