UNPKG

@git-temporal/git-temporal-react

Version:

<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

11 lines (9 loc) 239 B
// https://github.com/wbkd/d3-extended export function addMoveToFront(d3) { d3.selection.prototype.moveToFront = function() { return this.each(function() { // @ts-ignore this.parentNode.appendChild(this); }); }; }