armstrongnumber

Package to determine if a given number is an arm-strong number

Usage no npm install needed!

<script type="module">
  import armstrongnumber from 'https://cdn.skypack.dev/armstrongnumber';
</script>

README

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

Contributing

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

Building docs

(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

Commits Contributor
3 vallme2003

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.