You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 19, 2022. It is now read-only.
const errMsgNotNum = (val) => `numberIterator() num paramter is not a number: got ${val}`
const errMsgInvalidRadix = (val) => `numberIterator() radix parameter must be integer between 2 and 36; got ${val}`
const errMsgNotInt = (val) => `numberIterator() num parameter cannot be a float; got ${val}`
const errMsgSignedAndRadixNotTwo = (num, radix) => `numberIterator() can only handle signed integers as base 2 number; got num: ${num} and radix: ${radix}`