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.

border-image.js 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. "use strict";
  2. function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; }
  3. function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
  4. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  5. var Declaration = require('../declaration');
  6. var BorderImage = /*#__PURE__*/function (_Declaration) {
  7. _inheritsLoose(BorderImage, _Declaration);
  8. function BorderImage() {
  9. return _Declaration.apply(this, arguments) || this;
  10. }
  11. var _proto = BorderImage.prototype;
  12. /**
  13. * Remove fill parameter for prefixed declarations
  14. */
  15. _proto.set = function set(decl, prefix) {
  16. decl.value = decl.value.replace(/\s+fill(\s)/, '$1');
  17. return _Declaration.prototype.set.call(this, decl, prefix);
  18. };
  19. return BorderImage;
  20. }(Declaration);
  21. _defineProperty(BorderImage, "names", ['border-image']);
  22. module.exports = BorderImage;