mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-04 21:31:08 +02:00
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
'use strict';
|
|
// B.2.3.4 String.prototype.blink()
|
|
require('./_string-html')('blink', function (createHTML) {
|
|
return function blink() {
|
|
return createHTML(this, 'blink', '', '');
|
|
};
|
|
});
|