Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

set-to-string-tag.js 425B

1234567891011
  1. var defineProperty = require('../internals/object-define-property').f;
  2. var has = require('../internals/has');
  3. var wellKnownSymbol = require('../internals/well-known-symbol');
  4. var TO_STRING_TAG = wellKnownSymbol('toStringTag');
  5. module.exports = function (it, TAG, STATIC) {
  6. if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
  7. defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
  8. }
  9. };