Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 228 Bytes

README.md

File metadata and controls

17 lines (9 loc) · 228 Bytes

isEvn

A package that returns true if a numeric value is even and false if it is not.

usage


  const isEvn = require('isEvn');

  let foo = 10;
  let bar = isEvn(foo);
  
  console.log(bar); // will be true.