First solution in Clear category for Split Pairs by nicolas.tscherter
var splitPairs = t => (t + (t.length%2?'_':'')).match(/.{1,2}/g) || []
June 16, 2020