FLUJOS/BACK_BACK/node_modules/d3-selection/src/selection/raise.js
2025-11-07 00:06:12 +01:00

7 lines
138 B
JavaScript
Executable file

function raise() {
if (this.nextSibling) this.parentNode.appendChild(this);
}
export default function() {
return this.each(raise);
}