From 4fb364b26b244018834229fec1a31fd3cd3c7c91 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 3 May 2020 01:14:23 +0000 Subject: Bump vue-loader from 15.9.1 to 15.9.2 Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 15.9.1 to 15.9.2. - [Release notes](https://github.com/vuejs/vue-loader/releases) - [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/vuejs/vue-loader/compare/v15.9.1...v15.9.2) Signed-off-by: dependabot-preview[bot] Signed-off-by: npmbuildbot[bot] --- js/notifications.js | 2 +- js/notifications.js.map | 2 +- package-lock.json | 56 +++++++++++++++++++++++++++++++++++++------------ package.json | 2 +- 4 files changed, 46 insertions(+), 16 deletions(-) diff --git a/js/notifications.js b/js/notifications.js index 2fbfafd..78ae981 100644 --- a/js/notifications.js +++ b/js/notifications.js @@ -11,7 +11,7 @@ var a=Object.freeze({});function r(e){return null==e}function s(e){return null!= * Copyright(c) 2015 Andreas Lubbe * Copyright(c) 2015 Tiancheng "Timothy" Gu * MIT Licensed - */var a=/["'&<>]/;e.exports=function(e){var t,n=""+e,r=a.exec(n);if(!r)return n;var s="",i=0,o=0;for(i=r.index;i0?r(a(e),9007199254740991):0}},function(e,t,n){var a=n(33);e.exports=function(e){return Object(a(e))}},function(e,t){var n,a,r=e.exports={};function s(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function o(e){if(n===setTimeout)return setTimeout(e,0);if((n===s||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:s}catch(e){n=s}try{a="function"==typeof clearTimeout?clearTimeout:i}catch(e){a=i}}();var l,u=[],d=!1,c=-1;function m(){d&&l&&(d=!1,l.length?u=l.concat(u):c=-1,u.length&&_())}function _(){if(!d){var e=o(m);d=!0;for(var t=u.length;t;){for(l=u,u=[];++c1)for(var n=1;n0?a:n)(e)}},function(e,t){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(e,t,n){var a=n(243);e.exports=function(e,t,n){if(a(e),void 0===t)return e;switch(n){case 0:return function(){return e.call(t)};case 1:return function(n){return e.call(t,n)};case 2:return function(n,a){return e.call(t,n,a)};case 3:return function(n,a,r){return e.call(t,n,a,r)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){var a,r=n(12),s=n(254),i=n(40),o=n(24),l=n(255),u=n(49),d=n(36),c=d("IE_PROTO"),m=function(){},_=function(e){return"\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('button',{staticClass:\"action-button pull-right\",class:{ primary: _vm.primary },attrs:{\"data-type\":_vm.type,\"data-href\":_vm.link},on:{\"click\":_vm.onClickActionButton}},[_vm._v(\"\\n\\t\"+_vm._s(_vm.label)+\"\\n\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright (c) 2016 Joas Schilling \n *\n * @author Joas Schilling \n *\n * This file is licensed under the Affero General Public License version 3 or\n * later. See the COPYING file.\n */\n\nimport escapeHTML from 'escape-html'\n\nexport default {\n\tfileTemplate: require('./templates/file.handlebars'),\n\n\tuserLocalTemplate: require('./templates/userLocal.handlebars'),\n\tuserRemoteTemplate: require('./templates/userRemote.handlebars'),\n\n\tunknownTemplate: require('./templates/unkown.handlebars'),\n\tunknownLinkTemplate: require('./templates/unkownLink.handlebars'),\n\n\t/**\n\t * @param {string} message The rich object message with placeholders\n\t * @param {Object} parameters The rich objects to be parsed into the message\n\t * @returns {string} The HTML to render this message\n\t */\n\tparseMessage: function(message, parameters) {\n\t\tmessage = escapeHTML(message)\n\t\tconst regex = /\\{([a-z\\-_0-9]+)\\}/gi\n\t\tconst matches = message.match(regex)\n\n\t\tif (!matches) {\n\t\t\treturn message\n\t\t}\n\n\t\tmatches.forEach(parameter => {\n\t\t\tparameter = parameter.substring(1, parameter.length - 1)\n\t\t\tif (!Object.prototype.hasOwnProperty.call(parameters, parameter) || !parameters[parameter]) {\n\t\t\t\t// Malformed translation?\n\t\t\t\tconsole.error('Potential malformed ROS string: parameter {' + parameter + '} was found in the string but is missing from the parameter list')\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tconst parsed = this.parseParameter(parameters[parameter])\n\t\t\tmessage = message.replace('{' + parameter + '}', parsed)\n\t\t})\n\n\t\treturn message.replace(new RegExp('\\n', 'g'), '
')\n\t},\n\n\t/**\n\t * @param {Object} parameter Rich Object\n\t * @param {string} parameter.type Type of the object\n\t * @param {string} parameter.id Identifier of the object\n\t * @param {string} parameter.name Name of the object\n\t * @param {string} parameter.link Absolute link to the object\n\t * @param {string} [parameter.server] Server the user is on\n\t * @param {string} [parameter.path] User visible path of the file\n\t * @returns {string} The HTML to render this object\n\t */\n\tparseParameter: function(parameter) {\n\t\tswitch (parameter.type) {\n\t\tcase 'file':\n\t\t\treturn this.parseFileParameter(parameter).trim('\\n')\n\n\t\tcase 'user':\n\t\t\tif (parameter.server === undefined) {\n\t\t\t\treturn this.userLocalTemplate(parameter).trim('\\n')\n\t\t\t}\n\n\t\t\treturn this.userRemoteTemplate(parameter).trim('\\n')\n\n\t\tdefault:\n\t\t\tif (parameter.link !== undefined) {\n\t\t\t\treturn this.unknownLinkTemplate(parameter).trim('\\n')\n\t\t\t}\n\n\t\t\treturn this.unknownTemplate(parameter).trim('\\n')\n\t\t}\n\t},\n\n\t/**\n\t * @param {Object} parameter Rich Object file\n\t * @param {string} parameter.id Numeric ID of the file\n\t * @param {string} parameter.name Name of the file/folder\n\t * @param {string} parameter.path User visible path of the file\n\t * @param {string} parameter.link Absolute link to the file\n\t * @returns {string} The HTML to render this parameter\n\t */\n\tparseFileParameter: function(parameter) {\n\t\tconst lastSlashPosition = parameter.path.lastIndexOf('/')\n\t\tconst firstSlashPosition = parameter.path.indexOf('/')\n\t\tparameter.path = parameter.path.substring(firstSlashPosition === 0 ? 1 : 0, lastSlashPosition)\n\n\t\treturn this.fileTemplate(Object.assign({}, parameter, {\n\t\t\ttitle: parameter.path.length === 0 ? '' : t('notifications', 'in {path}', parameter),\n\t\t}))\n\t},\n}\n","import { render, staticRenderFns } from \"./Notification.vue?vue&type=template&id=18596d05&\"\nimport script from \"./Notification.vue?vue&type=script&lang=js&\"\nexport * from \"./Notification.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n\n\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"notification\",attrs:{\"data-id\":_vm.notificationId,\"data-timestamp\":_vm.timestamp}},[_c('div',{staticClass:\"notification-heading\"},[_c('span',{staticClass:\"notification-time has-tooltip live-relative-timestamp\",attrs:{\"data-timestamp\":_vm.timestamp,\"title\":_vm.absoluteDate}},[_vm._v(_vm._s(_vm.relativeDate))]),_vm._v(\" \"),_c('div',{staticClass:\"notification-delete\",on:{\"click\":_vm.onDismissNotification}},[_c('span',{staticClass:\"icon icon-close svg\",attrs:{\"title\":_vm.t('notifications', 'Dismiss')}})])]),_vm._v(\" \"),(_vm.useLink)?_c('a',{staticClass:\"notification-subject full-subject-link\",attrs:{\"href\":_vm.link}},[(_vm.icon)?_c('span',{staticClass:\"image\"},[_c('img',{staticClass:\"notification-icon\",attrs:{\"src\":_vm.icon}})]):_vm._e(),_vm._v(\" \"),_c('span',{staticClass:\"text\",domProps:{\"innerHTML\":_vm._s(_vm.renderedSubject)}})]):_c('div',{staticClass:\"notification-subject\"},[(_vm.icon)?_c('span',{staticClass:\"image\"},[_c('img',{staticClass:\"notification-icon\",attrs:{\"src\":_vm.icon}})]):_vm._e(),_vm._v(\" \"),_c('span',{staticClass:\"text\",domProps:{\"innerHTML\":_vm._s(_vm.renderedSubject)}})]),_vm._v(\" \"),(_vm.message)?_c('div',{staticClass:\"notification-message\",on:{\"click\":_vm.onClickMessage}},[_c('div',{staticClass:\"message-container\",class:{ collapsed: _vm.isCollapsedMessage },domProps:{\"innerHTML\":_vm._s(_vm.renderedMessage)}}),_vm._v(\" \"),(_vm.isCollapsedMessage)?_c('div',{staticClass:\"notification-overflow\"}):_vm._e()]):_vm._e(),_vm._v(\" \"),(_vm.actions.length)?_c('div',{staticClass:\"notification-actions\"},_vm._l((_vm.actions),function(a,i){return _c('Action',_vm._b({key:i},'Action',a,false))}),1):_vm._e()])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=6e2a9f70&scoped=true&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&id=6e2a9f70&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6e2a9f70\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (!_vm.shutdown)?_c('div',{staticClass:\"notifications\"},[_c('div',{ref:\"button\",staticClass:\"notifications-button menutoggle\",class:{ hasNotifications: _vm.notifications.length },attrs:{\"tabindex\":\"0\",\"role\":\"button\",\"aria-label\":_vm.t('notifications', 'Notifications'),\"aria-haspopup\":\"true\",\"aria-controls\":\"notification-container\",\"aria-expanded\":\"false\"},on:{\"click\":_vm.requestWebNotificationPermissions}},[_c('img',{ref:\"icon\",staticClass:\"svg\",attrs:{\"alt\":\"\",\"title\":_vm.t('notifications', 'Notifications'),\"src\":_vm.iconPath}})]),_vm._v(\" \"),_c('div',{ref:\"container\",staticClass:\"notification-container\"},[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.notifications.length > 0)?_c('ul',{staticClass:\"notification-wrapper\"},[_c('transition-group',{attrs:{\"name\":\"fade-collapse\",\"tag\":\"li\"}},_vm._l((_vm.notifications),function(n,index){return _c('Notification',_vm._b({key:n.notification_id,attrs:{\"index\":index,\"notification-id\":n.notification_id,\"object-id\":n.object_id,\"object-type\":n.object_type},on:{\"remove\":_vm.onRemove}},'Notification',n,false))}),1),_vm._v(\" \"),(_vm.notifications.length > 2)?_c('li',[_c('div',{staticClass:\"dismiss-all\",on:{\"click\":_vm.onDismissAll}},[_c('span',{staticClass:\"icon icon-close svg\",attrs:{\"title\":_vm.t('notifications', 'Dismiss all notifications')}}),_vm._v(\" \"+_vm._s(_vm.t('notifications', 'Dismiss all notifications'))+\"\\n\\t\\t\\t\\t\\t\")])]):_vm._e()],1):_c('div',{staticClass:\"emptycontent\"},[_c('div',{staticClass:\"icon icon-notifications-dark\"}),_vm._v(\" \"),(_vm.webNotificationsGranted === null)?_c('h2',[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('notifications', 'Requesting browser permissions to show notifications'))+\"\\n\\t\\t\\t\\t\")]):_c('h2',[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('notifications', 'No notifications'))+\"\\n\\t\\t\\t\\t\")])])])],1)]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2018 Joas Schilling \n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see .\n *\n */\n\nimport Vue from 'vue'\nimport App from './App'\n\nVue.prototype.t = t\nVue.prototype.n = n\nVue.prototype.OC = OC\nVue.prototype.OCA = OCA\n\nconst searchBox = document.getElementsByClassName('searchbox')\nconst notificationsBell = document.createElement('div')\nnotificationsBell.setAttribute('id', 'notifications')\n\nArray.prototype.map.call(searchBox, (el) => {\n\tif (el.nodeName !== 'FORM') {\n\t\treturn\n\t}\n\n\tel.insertAdjacentHTML('afterend', notificationsBell.outerHTML)\n})\n\nexport default new Vue({\n\tel: '#notifications',\n\tname: 'Init',\n\trender: h => h(App),\n})\n","/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nexport default function listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n","/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\nimport listToStyles from './listToStyles'\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of \n","import mod from \"-!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=6e2a9f70&scoped=true&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&id=6e2a9f70&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6e2a9f70\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (!_vm.shutdown)?_c('div',{staticClass:\"notifications\"},[_c('div',{ref:\"button\",staticClass:\"notifications-button menutoggle\",class:{ hasNotifications: _vm.notifications.length },attrs:{\"tabindex\":\"0\",\"role\":\"button\",\"aria-label\":_vm.t('notifications', 'Notifications'),\"aria-haspopup\":\"true\",\"aria-controls\":\"notification-container\",\"aria-expanded\":\"false\"},on:{\"click\":_vm.requestWebNotificationPermissions}},[_c('img',{ref:\"icon\",staticClass:\"svg\",attrs:{\"alt\":\"\",\"title\":_vm.t('notifications', 'Notifications'),\"src\":_vm.iconPath}})]),_vm._v(\" \"),_c('div',{ref:\"container\",staticClass:\"notification-container\"},[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.notifications.length > 0)?_c('ul',{staticClass:\"notification-wrapper\"},[_c('transition-group',{attrs:{\"name\":\"fade-collapse\",\"tag\":\"li\"}},_vm._l((_vm.notifications),function(n,index){return _c('Notification',_vm._b({key:n.notification_id,attrs:{\"index\":index,\"notification-id\":n.notification_id,\"object-id\":n.object_id,\"object-type\":n.object_type},on:{\"remove\":_vm.onRemove}},'Notification',n,false))}),1),_vm._v(\" \"),(_vm.notifications.length > 2)?_c('li',[_c('div',{staticClass:\"dismiss-all\",on:{\"click\":_vm.onDismissAll}},[_c('span',{staticClass:\"icon icon-close svg\",attrs:{\"title\":_vm.t('notifications', 'Dismiss all notifications')}}),_vm._v(\" \"+_vm._s(_vm.t('notifications', 'Dismiss all notifications'))+\"\\n\\t\\t\\t\\t\\t\")])]):_vm._e()],1):_c('div',{staticClass:\"emptycontent\"},[_c('div',{staticClass:\"icon icon-notifications-dark\"}),_vm._v(\" \"),(_vm.webNotificationsGranted === null)?_c('h2',[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('notifications', 'Requesting browser permissions to show notifications'))+\"\\n\\t\\t\\t\\t\")]):_c('h2',[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('notifications', 'No notifications'))+\"\\n\\t\\t\\t\\t\")])])])],1)]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2018 Joas Schilling \n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see .\n *\n */\n\nimport Vue from 'vue'\nimport App from './App'\n\nVue.prototype.t = t\nVue.prototype.n = n\nVue.prototype.OC = OC\nVue.prototype.OCA = OCA\n\nconst searchBox = document.getElementsByClassName('searchbox')\nconst notificationsBell = document.createElement('div')\nnotificationsBell.setAttribute('id', 'notifications')\n\nArray.prototype.map.call(searchBox, (el) => {\n\tif (el.nodeName !== 'FORM') {\n\t\treturn\n\t}\n\n\tel.insertAdjacentHTML('afterend', notificationsBell.outerHTML)\n})\n\nexport default new Vue({\n\tel: '#notifications',\n\tname: 'Init',\n\trender: h => h(App),\n})\n","/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nexport default function listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n","/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\nimport listToStyles from './listToStyles'\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of