7 lines
252 B
JavaScript
7 lines
252 B
JavaScript
var def = require('./$').setDesc
|
|
, has = require('./$.has')
|
|
, TAG = require('./$.wks')('toStringTag');
|
|
|
|
module.exports = function(it, tag, stat){
|
|
if(it && !has(it = stat ? it : it.prototype, TAG))def(it, TAG, {configurable: true, value: tag});
|
|
}; |