Ohm-Management - Projektarbeit B-ME
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.

options.js 691B

123456789101112131415161718192021
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  6. exports.default = options;
  7. var OPTIONS_DEFAULTS = {
  8. minifyTheme: null,
  9. themeCache: null,
  10. customProperties: false,
  11. cspNonce: null
  12. };
  13. function options() {
  14. var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  15. return _extends({}, OPTIONS_DEFAULTS, options);
  16. }
  17. //# sourceMappingURL=options.js.map