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.60 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.59 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.58 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.57 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.56 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.55 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.54 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.53 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.52 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.51 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.50 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.49 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.48 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.47 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.46 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.45 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.44 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.43 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.42 node_modules/es-abstract/helpers/intToBinaryString.js
immosquare-cleaner-0.1.41 node_modules/es-abstract/helpers/intToBinaryString.js