LICENSES 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*!
  2. * JavaScript Cookie v2.2.1
  3. * https://github.com/js-cookie/js-cookie
  4. *
  5. * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
  6. * Released under the MIT license
  7. */
  8. /*!
  9. * Vue.js v2.7.14
  10. * (c) 2014-2022 Evan You
  11. * Released under the MIT License.
  12. */
  13. /*!
  14. * vuex v3.6.2
  15. * (c) 2021 Evan You
  16. * @license MIT
  17. */
  18. /*!
  19. * cookie
  20. * Copyright(c) 2012-2014 Roman Shtylman
  21. * Copyright(c) 2015 Douglas Christopher Wilson
  22. * MIT Licensed
  23. */
  24. /*!
  25. * vue-awesome-swiper v4.1.1
  26. * Copyright (c) Surmon. All rights reserved.
  27. * Released under the MIT License.
  28. * Surmon <https://github.com/surmon-china>
  29. */
  30. /*!
  31. * vue-client-only v0.0.0-semantic-release
  32. * (c) 2021-present egoist <0x142857@gmail.com>
  33. * Released under the MIT License.
  34. */
  35. /*!
  36. * vue-no-ssr v1.1.1
  37. * (c) 2018-present egoist <0x142857@gmail.com>
  38. * Released under the MIT License.
  39. */
  40. /*! *****************************************************************************
  41. Copyright (c) Microsoft Corporation. All rights reserved.
  42. Licensed under the Apache License, Version 2.0 (the "License"); you may not use
  43. this file except in compliance with the License. You may obtain a copy of the
  44. License at http://www.apache.org/licenses/LICENSE-2.0
  45. THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  46. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  47. WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  48. MERCHANTABLITY OR NON-INFRINGEMENT.
  49. See the Apache Version 2.0 License for specific language governing permissions
  50. and limitations under the License.
  51. ***************************************************************************** */
  52. /**
  53. * @license
  54. * Lodash <https://lodash.com/>
  55. * Copyright JS Foundation and other contributors <https://js.foundation/>
  56. * Released under MIT license <https://lodash.com/license>
  57. * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  58. * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
  59. */
  60. /**
  61. * Checks if an event is supported in the current execution environment.
  62. *
  63. * NOTE: This will not work correctly for non-generic events such as `change`,
  64. * `reset`, `load`, `error`, and `select`.
  65. *
  66. * Borrows from Modernizr.
  67. *
  68. * @param {string} eventNameSuffix Event name, e.g. "click".
  69. * @param {?boolean} capture Check if the capture phase is supported.
  70. * @return {boolean} True if the event is supported.
  71. * @internal
  72. * @license Modernizr 3.0.0pre (Custom Build) | MIT
  73. */