Files
infocom-systems-design/node_modules/d3-selection/src/selection/lower.js
2025-10-03 22:27:28 +03:00

8 lines
171 B
JavaScript

function lower() {
if (this.previousSibling) this.parentNode.insertBefore(this, this.parentNode.firstChild);
}
export default function() {
return this.each(lower);
}