{“ast”:null,“code”:“"use strict";nnObject.defineProperty(exports, "__esModule", {n value: truen});nnvar _extends = Object.assign || function (target) {n for (var i = 1; i < arguments.length; i++) {n var source = arguments;nn for (var key in source) {n if (Object.prototype.hasOwnProperty.call(source, key)) {n target = source;n }n }n }nn return target;n};nnexports.configure = configure; // Configurationnnvar DEFAULT_CONFIGURATION = exports.DEFAULT_CONFIGURATION = {n // A function for calling an external query engine for testing CSS selectors such as jQuery or Sizzlen // (If you have jQuery or Sizzle on the page, you have no need to supply such a function as Simmer will detectn // these and use them if they are available. this will not work if you have these libraries in noConflict mode.n queryEngine: null,n // A minimum specificty level. Once the parser reaches this level it starts verifying the selector after every method is calledn // This can cut down our execution time by avoiding needless parsing but can also hurt execution times by performing manyn // verifications. This number will have to be tweeked here and there as we use the component…n specificityThreshold: 100,n // How deep into the DOM hierarchy should Simmer go in order to reach a unique selector.n // This is a delicate game because the higher the number the more likely you are to reach a unique selector,n // but it also means a longer and more breakable one. Assuming you want to store this selector to use later,n // making it longer also means it is more likely to change and loose it's validity.n depth: 3,n // Handling errors in the Simmer analysis process.n // true / false / callbackn // false: errors are ignored by Simmern // true: errors rethrown by the processn // a function callback will be called with two parameters: the exception and the element being analyzedn errorHandling: false,n // A maximum length for the CSS selector can be specified - if no specific selector can be found which is shorter than this lengthn // then it is treated as if no selector could be foundn selectorMaxLength: 512n};nnfunction configure() {n var config = arguments.length > 0 && arguments !== undefined ? arguments : {};n return _extends({}, DEFAULT_CONFIGURATION, config);n}”,“map”:null,“metadata”:{},“sourceType”:“module”}