npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cycle-division

v1.0.0

Published

Division with repeating decimal detection

Downloads

3

Readme

cycle-division

GitHub license npm version CircleCI Status Greenkeeper badge

This is a Javascript module which implements division with repeating decimal detection. This allows you to divide two numbers and extract the integer, fractional, and repeating decimal parts of the result.

This module was inspired by https://softwareengineering.stackexchange.com/q/192070/73290 and the implementation at http://codepad.org/hKboFPd2.

Usage

import { divide } from 'cycle-division';
const q = divide(438, 35);

console.log(q.toString());
// 12.5(142857)

console.log(q);
// Quotient {
//   sign: 1,
//   whole: 12,
//   fraction: [ 5 ],
//   cycle: [ 1, 4, 2, 8, 5, 7 ],
//   base: 10 }

The examples here use the import statement, which is supported by TypeScript and Babel. If you're using Node.js or a bundler that only supports CommonJS modules, then you can replace the import statements with require calls:

const { divide } = require('cycle-division');

API

divide(dividend, divisor, base?)

This function returns a Quotient object. The base parameter is argument and defaults to 10.

Quotient

Quotient objects have the following properties:

  • sign: 1 if the result is positive or zero, -1 if the result is negative.
  • whole: The integer part of the result.
  • fraction: An array containing the series of digits that come after the radix point in the result but before the.repeating part if any.
  • cycle: An array containing the repeating part of the fraction, the repetend.
  • base: The base of the digits in the fraction and cycle.

Quotient objects have the following methods:

  • toString(): Stringifies the Quotient object. If the quotient contains no cycle, then the result will be a standard number string (ie. "5" or "12.34"). If a cycle is present, then the cycle will be wrapped with parenthesis (ie. "12.3(56)" or "0.(3)").
  • equals(other): The other parameter must be a Quotient object. The method returns true if both objects' properties are equal.

Types

TypeScript type definitions for this module are included! The type definitions won't require any configuration to use.