Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. };