@voidagency/skills 1.0.0

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.
@@ -0,0 +1,38 @@
1
+ import { t as __commonJSMin } from "../rolldown-runtime.mjs";
2
+ //#region ../../node_modules/is-extendable/index.js
3
+ /*!
4
+ * is-extendable <https://github.com/jonschlinkert/is-extendable>
5
+ *
6
+ * Copyright (c) 2015, Jon Schlinkert.
7
+ * Licensed under the MIT License.
8
+ */
9
+ var require_is_extendable = /* @__PURE__ */ __commonJSMin(((exports, module) => {
10
+ module.exports = function isExtendable(val) {
11
+ return typeof val !== "undefined" && val !== null && (typeof val === "object" || typeof val === "function");
12
+ };
13
+ }));
14
+ //#endregion
15
+ //#region ../../node_modules/extend-shallow/index.js
16
+ var require_extend_shallow = /* @__PURE__ */ __commonJSMin(((exports, module) => {
17
+ var isObject = require_is_extendable();
18
+ module.exports = function extend(o) {
19
+ if (!isObject(o)) o = {};
20
+ var len = arguments.length;
21
+ for (var i = 1; i < len; i++) {
22
+ var obj = arguments[i];
23
+ if (isObject(obj)) assign(o, obj);
24
+ }
25
+ return o;
26
+ };
27
+ function assign(a, b) {
28
+ for (var key in b) if (hasOwn(b, key)) a[key] = b[key];
29
+ }
30
+ /**
31
+ * Returns true if the given `key` is an own property of `obj`.
32
+ */
33
+ function hasOwn(obj, key) {
34
+ return Object.prototype.hasOwnProperty.call(obj, key);
35
+ }
36
+ }));
37
+ //#endregion
38
+ export { require_extend_shallow as t };