Package Exports
- roll-anything
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (roll-anything) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Roll anything 🎲
npm i roll-anythingA very tiny dice util. You can roll a dice with any amount of sides.
Meet the family
- roll-anything 🎲
- merge-anything 🥡
- filter-anything ⚔️
- find-and-replace-anything 🎣
- compare-anything 🛰
- copy-anything 🎭
- flatten-anything 🏏
- is-what 🙉
Usage
Roll a number
import { roll } from 'roll-anything'
// Rolling 🎲👋
roll() // returns a random number between 0-100; including 0 and 100
roll(10) // returns a random number between 0-10; including 0 and 10
roll(5, 10) // returns a random number between 5-10; including 5 and 10Flip a coin
import { flip } from 'roll-anything'
flip() // returns 'heads' or 'tails' at randomDice 🎲
import { Dice } from 'roll-anything'
// Create a die of 6 sides
const dice = Dice(6)
// returns { sides: 6, roll: function }
dice.roll() // returns 1 ~ 6
dice.sides // returns 6
// Rolling 🎲👋
Dice().roll() // returns 1 ~ 6
// → 6 sided dice is the default.
Dice(2).roll() // returns 1 ~ 2
Dice(10).roll() // returns 1 ~ 10
// Roll a specific number
Dice(6).rollAssert(6)
// rolls 1 ~ 6
// then returns `true` if it rolled 6 or `false` if it didn't
Dice(2).rollAssert(1)
// 50-50 chance to get `true` or `false`Source code
See the source code here.