7 lines
138 B
JavaScript
Executable file
7 lines
138 B
JavaScript
Executable file
function raise() {
|
|
if (this.nextSibling) this.parentNode.appendChild(this);
|
|
}
|
|
|
|
export default function() {
|
|
return this.each(raise);
|
|
}
|