1 define(['../array/slice'], function(slice){
4 * Return a copy of the object, filtered to only have values for the whitelisted keys.
6 function pick(obj, var_keys){
7 var keys = typeof arguments[1] !== 'string'? arguments[1] : slice(arguments, 1),
10 while (key = keys[i++]) {