es6.string.fixed.js 184 B

1234567
  1. 'use strict';
  2. // B.2.3.6 String.prototype.fixed()
  3. require('./_string-html')('fixed', function(createHTML){
  4. return function fixed(){
  5. return createHTML(this, 'tt', '', '');
  6. }
  7. });