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.set.delete-all.js 447B

123456789101112
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var IS_PURE = require('../internals/is-pure');
  4. var collectionDeleteAll = require('../internals/collection-delete-all');
  5. // `Set.prototype.deleteAll` method
  6. // https://github.com/tc39/proposal-collection-methods
  7. $({ target: 'Set', proto: true, real: true, forced: IS_PURE }, {
  8. deleteAll: function deleteAll(/* ...elements */) {
  9. return collectionDeleteAll.apply(this, arguments);
  10. }
  11. });