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.

esnext.composite-symbol.js 521B

1234567891011
  1. var $ = require('../internals/export');
  2. var getCompositeKeyNode = require('../internals/composite-key');
  3. var getBuiltIn = require('../internals/get-built-in');
  4. // https://github.com/tc39/proposal-richer-keys/tree/master/compositeKey
  5. $({ global: true }, {
  6. compositeSymbol: function compositeSymbol() {
  7. if (arguments.length === 1 && typeof arguments[0] === 'string') return getBuiltIn('Symbol')['for'](arguments[0]);
  8. return getCompositeKeyNode.apply(null, arguments).get('symbol', getBuiltIn('Symbol'));
  9. }
  10. });