UNPKG

kingraph

Version:

Plots family trees using JavaScript and Graphviz

14 lines (11 loc) 253 B
function idGen () { var ids = {}; return function(key) { if (typeof ids[key] === 'undefined') { return (ids[key] = 0); } else { return ++ids[key]; } }; } module.exports = idGen;