UNPKG

serverless-artillery

Version:

A serverless performance testing tool. `serverless` + `artillery` = crush. a.k.a. Orbital Laziers [sic]

15 lines (12 loc) 333 B
'use strict'; 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; };