wallet-core/node_modules/core-js/modules/es6.string.blink.js

8 lines
192 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
// B.2.3.4 String.prototype.blink()
2017-08-14 05:01:11 +02:00
require('./_string-html')('blink', function (createHTML) {
return function blink() {
2017-05-28 00:38:50 +02:00
return createHTML(this, 'blink', '', '');
2017-08-14 05:01:11 +02:00
};
});