8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
import interrupt from "../interrupt.js";
|
|
|
|
export default function(name) {
|
|
return this.each(function() {
|
|
interrupt(this, name);
|
|
});
|
|
}
|