
	Number.zeroFormat(n: Integer, [fill: Boolean = false], [right: Boolean = false]): String
	
		Returns the number converted to string with zeroes on the left or right.
		
			n amount of zeroes to be added
			fill if "true", the zeroes will be added to the number until reaching at least "n" digits, otherwise it will be added exactly "n" zeroes
			right if "true" the zeroes will be concatenated on the right, otherwise on the left
		
	
