UNPKG

233 BJavaScriptView Raw
1import pause from '../internal/pause.js';
2
3/* eslint-disable no-invalid-this */
4export default function() {
5 if (!this._.visible) {
6 return this;
7 }
8 pause.call(this);
9 this.clear();
10 this._.visible = false;
11 return this;
12}