mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 20:49:29 +08:00
7 lines
209 B
Text
7 lines
209 B
Text
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return typeof String.prototype.padEnd === 'function' ? String.prototype.padEnd : implementation;
|
|
};
|