@juice789/tf2items 1.0.4 → 1.0.6
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.
- package/blanket.js +1 -1
- package/package.json +1 -1
- package/schema.json +1 -1
package/blanket.js
CHANGED
|
@@ -113,7 +113,7 @@ const blanketify = uncurryN(3, (propList, skus, item) => compose(
|
|
|
113
113
|
unnest,
|
|
114
114
|
map(remaps),//decode defindices that are not possible anymore
|
|
115
115
|
map(omit(__, itemFromSku(item.sku))),//create items from the combinations
|
|
116
|
-
concat([[]]),//create the last combination where no prop is removed. If the skus includes the sku we can return it.
|
|
116
|
+
//concat([[]]),//create the last combination where no prop is removed. If the skus includes the sku we can return it.
|
|
117
117
|
chain(compose(getCombos(0), length), identity),//create every possible combination
|
|
118
118
|
filter(compose(Boolean, prop(__, itemFromSku(item.sku))))//remove every prop from proplist that is not present in the item
|
|
119
119
|
)(propList || propListDefault))
|