Update npm packages (73 packages including @jqhtml 2.3.36)
Update npm registry domain from privatenpm.hanson.xyz to npm.internal.hanson.xyz 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
18
node_modules/smob/dist/index.mjs
generated
vendored
18
node_modules/smob/dist/index.mjs
generated
vendored
@@ -1,8 +1,8 @@
|
||||
var PriorityName;
|
||||
(function(PriorityName) {
|
||||
var PriorityName = /*#__PURE__*/ function(PriorityName) {
|
||||
PriorityName["LEFT"] = "left";
|
||||
PriorityName["RIGHT"] = "right";
|
||||
})(PriorityName || (PriorityName = {}));
|
||||
return PriorityName;
|
||||
}({});
|
||||
|
||||
function isObject(item) {
|
||||
return !!item && typeof item === 'object' && !Array.isArray(item);
|
||||
@@ -115,14 +115,10 @@ function hasOwnProperty(obj, prop) {
|
||||
}
|
||||
|
||||
function buildOptions(options = {}) {
|
||||
var _options_array;
|
||||
options.array = (_options_array = options.array) != null ? _options_array : true;
|
||||
var _options_arrayDistinct;
|
||||
options.arrayDistinct = (_options_arrayDistinct = options.arrayDistinct) != null ? _options_arrayDistinct : false;
|
||||
var _options_clone;
|
||||
options.clone = (_options_clone = options.clone) != null ? _options_clone : false;
|
||||
var _options_inPlace;
|
||||
options.inPlace = (_options_inPlace = options.inPlace) != null ? _options_inPlace : false;
|
||||
options.array = options.array ?? true;
|
||||
options.arrayDistinct = options.arrayDistinct ?? false;
|
||||
options.clone = options.clone ?? false;
|
||||
options.inPlace = options.inPlace ?? false;
|
||||
options.priority = options.priority || PriorityName.LEFT;
|
||||
options.arrayPriority = options.arrayPriority || options.priority;
|
||||
return options;
|
||||
|
||||
Reference in New Issue
Block a user