react-saasify-chrisvxd
Version:
React components for Saasify web clients.
15 lines (12 loc) • 333 B
JavaScript
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shimTrimLeft() {
var polyfill = getPolyfill();
define(
String.prototype,
{ trimLeft: polyfill },
{ trimLeft: function () { return String.prototype.trimLeft !== polyfill; } }
);
return polyfill;
};
;