8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
function lower() {
|
|
if (this.previousSibling) this.parentNode.insertBefore(this, this.parentNode.firstChild);
|
|
}
|
|
|
|
export default function() {
|
|
return this.each(lower);
|
|
}
|