mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
21 lines
583 B
JavaScript
21 lines
583 B
JavaScript
|
//General helper functions
|
||
|
|
||
|
//Returns the size (number of keys) of an object
|
||
|
function sizeOfObject(obj) {
|
||
|
var size = 0, key;
|
||
|
for (key in obj) {
|
||
|
if (obj.hasOwnProperty(key)) size++;
|
||
|
}
|
||
|
return size;
|
||
|
}
|
||
|
|
||
|
//Adds a random offset to a number within a certain percentage
|
||
|
//e.g. addOffset(100, 5) will return anything from 95 to 105.
|
||
|
//The percentage argument must be between 0 and 100;
|
||
|
function addOffset(n, percentage) {
|
||
|
if (percentage < 0 || percentage > 100) {return ;}
|
||
|
|
||
|
var offset = n * (percentage / 100);
|
||
|
|
||
|
return n * (Math.random() * (2 * offset) - offset);
|
||
|
}
|