@juice789/tf2items 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/blanket.js +1 -1
  2. package/package.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))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juice789/tf2items",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "tf2 item schema thingys",
5
5
  "main": "app.js",
6
6
  "scripts": {