polyfill.js 209 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7
'use strict';

var implementation = require('./implementation');

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