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.

object-to-string.js 371B

123456789
  1. 'use strict';
  2. var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');
  3. var classof = require('../internals/classof');
  4. // `Object.prototype.toString` method implementation
  5. // https://tc39.es/ecma262/#sec-object.prototype.tostring
  6. module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
  7. return '[object ' + classof(this) + ']';
  8. };