'use strict'
const add = require('./math').binaryAdd
const integers = [3, 4, 5]
map(add(10), integers)
// => [ 13, 14, 15 ]