智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/45/4506aac2170699d80c738866091...

9 lines
300 B

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;
};