UNPKG

@d3fc/d3fc-rebind

Version:

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

4 lines (2 loc) 152 B
const capitalizeFirstLetter = (str) => str[0].toUpperCase() + str.slice(1); export default (prefix) => (name) => prefix + capitalizeFirstLetter(name);