'use strict'; module.exports = function shorter (a, b) { return a.length < b.length ? a : b; };