Brace expansion: Difference between revisions

Content added Content deleted
Line 1,226: Line 1,226:
'use strict'
'use strict'


// 1. Return each test expression with an indented list of its expansions, while
// 1. Return each expression with an indented list of its expansions, while
// 2. logging each parse tree to the console.log() stream
// 2. logging each parse tree to the console.log() stream
Line 1,310: Line 1,310:
var iLast = lstCommas.length;
var iLast = lstCommas.length;


var dctOr = {
return {
fn: or,
fn: or,
args: splitsAt(
args: splitsAt(
Line 1,322: Line 1,322:
})
})
};
};

return dctOr;
}
}