n-sys 1.33.20 → 1.33.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,8 +4,26 @@
4
4
  * Released under the MIT License.
5
5
  */
6
6
 
7
- /*!
8
- * vue-router v3.6.5
9
- * (c) 2022 Evan You
10
- * @license MIT
7
+ /**
8
+ * @license
9
+ * Lodash <https://lodash.com/>
10
+ * Copyright JS Foundation and other contributors <https://js.foundation/>
11
+ * Released under MIT license <https://lodash.com/license>
12
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
13
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
14
+ */
15
+
16
+ /**
17
+ * Checks if an event is supported in the current execution environment.
18
+ *
19
+ * NOTE: This will not work correctly for non-generic events such as `change`,
20
+ * `reset`, `load`, `error`, and `select`.
21
+ *
22
+ * Borrows from Modernizr.
23
+ *
24
+ * @param {string} eventNameSuffix Event name, e.g. "click".
25
+ * @param {?boolean} capture Check if the capture phase is supported.
26
+ * @return {boolean} True if the event is supported.
27
+ * @internal
28
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
11
29
  */