Sha256: 94f74c3898b27f0a316500a45b039785b1e104ee3872163f15d7e0c66201693f

Contents?: true

Size: 540 Bytes

Versions: 50

Compression:

Stored size: 540 Bytes

Contents

'use strict';

var GetIntrinsic = require('get-intrinsic');

var $floor = GetIntrinsic('%Math.floor%');

// https://runestone.academy/ns/books/published/pythonds/BasicDS/ConvertingDecimalNumberstoBinaryNumbers.html#:~:text=The%20Divide%20by%202%20algorithm,have%20a%20remainder%20of%200

module.exports = function intToBinaryString(x) {
	var str = '';
	var y;

	while (x > 0) {
		y = x / 2;
		x = $floor(y); // eslint-disable-line no-param-reassign
		if (y === x) {
			str = '0' + str;
		} else {
			str = '1' + str;
		}
	}
	return str;
};

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
immosquare-cleaner-0.1.14 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.13 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.12 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.11 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.10 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.9 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.8 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.7 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.6 node_modules/es-abstract/helpers/intToBinaryString.js
decidim-0.26.8 packages/eslint-config/node_modules/es-abstract/helpers/intToBinaryString.js