智能照明系统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/69/697ed63474818f7611e85a4207d...

9 lines
300 B

var padStart = require('../string/virtual/pad-start');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.padStart;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.padStart) ? padStart : own;
};