(n)
| 113 | |
| 114 | // type在支付宝环境下不一定准确,判断是普通对象优先使用isPlainObject(新版支付宝不复现,issue #644 修改isPlainObject实现与type等价) |
| 115 | function type (n) { |
| 116 | return Object.prototype.toString.call(n).slice(8, -1) |
| 117 | } |
| 118 | |
| 119 | function aliasReplace (options = {}, alias, target) { |
| 120 | if (options[alias]) { |
no outgoing calls
no test coverage detected