UNPKG

imma

Version:

A collection of functions for dealing with native arrays and objects immutably

7 lines (6 loc) 157 B
'use strict' const set = module.exports = (object, key, value) => { const result = Object.assign({}, object) result[key] = value return result }