1.0.1 • Published 4 years ago

armstrongnumber v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

armstrongnumber NPM version NPM monthly downloads NPM total downloads Linux Build Status

Returns true if the given number is an armstrong number, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.

Please consider following this project's author, Valliappan Thenappan, and consider starring the project to show your :heart: and support.

Install

Install with npm:

$ npm install --save armstrongnumber

Usage

Works with numbers.

const isArmStrongNumber = require('armstrongnumber');

console.log(isArmStrongNumber(153)); //=> true
console.log(isArmStrongNumber(1)); //=> true

console.log(isArmStrongNumber(2)); //=> false
console.log(isArmStrongNumber(1534)); //=> false

About

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Contributors

CommitsContributor
3vallme2003

Author

Valliappan Thenappan

License

Copyright © 2020, Valliappan Thenappan. Released under the ISC License.


This file was generated by verb-generate-readme, v0.6.0, on Jun 21, 2020.