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

8 lines
185 B
JavaScript
Raw Normal View History

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