@chancejs/coin
v1.0.2
Published
Generate a random coin with Chance.js.
Downloads
4
Readme
@chancejs/coin
Note: This is a WIP proof of concept. DO NOT USE YET. I will remove this once it's ready for prime time :)
Installation
Install with npm
npm install @chancejs/coin
Install with yarn
yarn add @chancejs/coin
Usage
In your code, include it as follows:
CommonJS
// Require
let chance = require('@chancejs/coin');
// Use
console.log(chance.coin()); // will output "heads" or "tails"
ES Module
import * as chance from '@chancejs/coin';
console.log(chance.coin()); // will output "heads" or "tails"
Examples
// usage
chance.coin()
Flip a coin!
chance.coin();
=> 'heads'
chance.coin();
=> 'tails'