UNPKG

@symblight/react-stockcharts

Version:

Highly customizable stock charts with ReactJS and d3

17 lines (13 loc) 367 B
var idCounter = {}; export default function uniqueId() { var prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '$unique$'; if (!idCounter[prefix]) { idCounter[prefix] = 0; } var id = ++idCounter[prefix]; if (prefix === '$unique$') { return '' + id; } return '' + prefix + id; } //# sourceMappingURL=uniqueId.js.map