Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 592 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 592 Bytes

RxstyTerrv | Rusty Terra

Warning

🚧 The application is in an active stage of development //

How it should work?

Examples

Raw Transformed
function randInt(min, max) {
  const minCeiled = Math.ceil(min);
  const maxFloored = Math.floor(max);
  return Math.floor(
    Math.random() * 
    (maxFloored - minCeiled + 1) 
    + minCeiled
  );
}
function randInt(min, max) {
  return $$rterra.a(min, max);
}