decentralized-internet
Version:
An NPM library of programs to create decentralized web and distributed computing projects
1 lines • 177 B
JavaScript
export default t=>{const n=t.min_quantity||1,a=t.max_quantity;return"number"!=typeof t.quantity||isNaN(t.quantity)||t.quantity<n?t.quantity=n:a&&t.quantity>a&&(t.quantity=a),t};