Version 1
[yaffs-website] / node_modules / core-js / library / modules / es6.string.strike.js
1 'use strict';
2 // B.2.3.12 String.prototype.strike()
3 require('./_string-html')('strike', function(createHTML){
4   return function strike(){
5     return createHTML(this, 'strike', '', '');
6   }
7 });