UNPKG

@d3fc/d3fc-rebind

Version:

Utilities for copying methods from one d3 component to another in a configurable way

9 lines (7 loc) 231 B
import createReboundMethod from './createReboundMethod'; export default (target, source, ...names) => { for (const name of names) { target[name] = createReboundMethod(target, source, name); } return target; };