lix-website/themes/lix/assets/bootstrap/node_modules/string.prototype.padend/polyfill.js
2024-04-26 22:49:34 -06:00

8 lines
209 B
JavaScript

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof String.prototype.padEnd === 'function' ? String.prototype.padEnd : implementation;
};