aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/instance/trim-left.js
blob: fc5c3091a599a3f5fecaba484facd12f319c86bc (plain)
1
2
3
4
5
6
7
8
9
var trimLeft = require('../string/virtual/trim-left');

var StringPrototype = String.prototype;

module.exports = function (it) {
  var own = it.trimLeft;
  return typeof it === 'string' || it === StringPrototype
    || (it instanceof String && own === StringPrototype.trimLeft) ? trimLeft : own;
};