This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/string.prototype.padstart/polyfill.js

8 lines
213 B
JavaScript

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