.to_gc_str()
Takes a number and turns it into a formatted GC string.
Syntax
#fs.scripts.lib().to_gc_str(num);
Parameters
num
The number to turn into a formatted GC string.
Return
Returns a GC string.
100M200K300GC
Example
function(context, args) {
const l = #fs.scripts.lib();
const my_gc_number = 100200300;
return l.to_gc_str(my_gc_number);
}