Variable names changed from underscore to CamelCase. Eslint rules updated. #64

This commit is contained in:
n1474335 2017-01-31 18:24:56 +00:00
parent f8193797fa
commit e3c977934b
66 changed files with 3176 additions and 3172 deletions

View file

@ -22,7 +22,7 @@ var Base = {
* @param {Object[]} args
* @returns {string}
*/
run_to: function(input, args) {
runTo: function(input, args) {
if (!input) {
throw ("Error: Input must be a number");
}
@ -41,7 +41,7 @@ var Base = {
* @param {Object[]} args
* @returns {number}
*/
run_from: function(input, args) {
runFrom: function(input, args) {
var radix = args[0] || Base.DEFAULT_RADIX;
if (radix < 2 || radix > 36) {
throw "Error: Radix argument must be between 2 and 36";