mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 19:23:18 +00:00
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
var trimStart = require('../string/virtual/trim-start');
|
|
|
|
var StringPrototype = String.prototype;
|
|
|
|
module.exports = function (it) {
|
|
var own = it.trimStart;
|
|
return typeof it === 'string' || it === StringPrototype
|
|
|| (it instanceof String && own === StringPrototype.trimStart) ? trimStart : own;
|
|
};
|