(it, tag, stat)
| 86 | // http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring |
| 87 | var toString = ObjectProto[TO_STRING]; |
| 88 | function setToStringTag(it, tag, stat){ |
| 89 | if(it && !has(it = stat ? it : it[PROTOTYPE], SYMBOL_TAG))hidden(it, SYMBOL_TAG, tag); |
| 90 | } |
| 91 | function cof(it){ |
| 92 | return toString.call(it).slice(8, -1); |
| 93 | } |
no test coverage detected