@huggingface/inference
Version:
Typescript client for the Hugging Face Inference Providers and Inference Endpoints
14 lines (13 loc) • 347 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.pick = pick;
/**
* Return copy of object, only keeping allowlisted properties.
*/
function pick(o, props) {
return Object.assign({}, ...props.map((prop) => {
if (o[prop] !== undefined) {
return { [prop]: o[prop] };
}
}));
}
;