UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

16 lines (12 loc) 245 B
'use strict' function range(from, to) { // TODO: make this inlined. const list = Array.apply(null, new Array(to - from + 1)) for(let i = 0; i < list.length; ++i) { list[i] = from + i } return list } module.exports = { range }