psquare

1.0.3 • Public • Published

psquare

This is a node package that checks if an input is a perfect square and returns true or false

How to use

npm install --save psquare

include in your script as:

var psquare = require('psquare');

Use as:

// returns true or false
// pass the number as argument to the check method
psquare.check(49);

Example would be:

var psquare = require('psquare');
 
// Check if a number is a perfect square or not, returns true or false
if (psquare.check(49)) {
 console.log("Is perfect square")
}

Package Sidebar

Install

npm i psquare

Weekly Downloads

3

Version

1.0.3

License

MIT

Last publish

Collaborators

  • ghostffcode