rdesign/frontend/node_modules/d3-selection/src/selection/lower.js

8 lines
171 B
JavaScript

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