LICENSES 2.5 KB

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