UNPKG

eslint-config-lemon

Version:

<div align="center"> <br> <img width="400" src="logo.svg"> <br> <br> </div>

15 lines (12 loc) 337 B
'use strict'; var define = require('define-properties'); var getPolyfill = require('./polyfill'); module.exports = function shimTrimStart() { var polyfill = getPolyfill(); define( String.prototype, { trimStart: polyfill }, { trimStart: function () { return String.prototype.trimStart !== polyfill; } } ); return polyfill; };