UNPKG

145 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(that, keys) {
4 var out = {};
5 keys.forEach(function(k) {
6 out[k] = that[k];
7 });
8 return out;
9};