/** * @module 1-liners/by * * @description * * Same as `a / b` * * @example * * const by = require('1-liners/by'); * * by(6, 2); // => 3 * */ export default (a, b) => a / b;