New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@chancejs/coin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chancejs/coin

Generate a random coin with Chance.js.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@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'

FAQs

Package last updated on 14 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc