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

checkiseven

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

checkiseven

State of the art even number checking.

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

checkIsEven

State of the art even number checking.

Installation

  • With npm:
npm i checkiseven
  • With yarn:
yarn add checkiseven
  • From a CDN:
<script src="https://unpkg.com/checkiseven"></script>

Usage

CommonJS

const { default: checkIsEven } = require('checkiseven');

console.log(checkIsEven(2)); // true
console.log(checkIsEven(3)); // false

ES2015 Modules + Bundler

import checkIsEven from 'checkiseven';

console.log(checkIsEven(2)); // true
console.log(checkIsEven(3)); // false

Browser ES2015 Modules

import checkIsEven from 'https://unpkg.com/checkiseven/dist/index.js'

console.log(checkIsEven(2)); // true
console.log(checkIsEven(3)); // false

FAQs

Package last updated on 30 Jul 2020

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