/** * @module 1-liners/plus * * @description * * Same as `a + b`. * * @example * * const plus = require('1-liners/plus'); * * plus(2, 8); // => 10 * plus('a', 'b'); // => 'ab' * */ export default (a, b) => a + b;