main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
337 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var define = require('define-properties');
|
---|
4 | var getPolyfill = require('./polyfill');
|
---|
5 |
|
---|
6 | module.exports = function shimTrimStart() {
|
---|
7 | var polyfill = getPolyfill();
|
---|
8 | define(
|
---|
9 | String.prototype,
|
---|
10 | { trimStart: polyfill },
|
---|
11 | { trimStart: function () { return String.prototype.trimStart !== polyfill; } }
|
---|
12 | );
|
---|
13 | return polyfill;
|
---|
14 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.