put.js 103 B

123456
  1. 'use strict';
  2. module.exports = function put(key, value) {
  3. this.items[key] = value;
  4. return this;
  5. };