UNPKG

winbox-ui-next

Version:

We Design Vue 2.0: A Vue.js 3 UI Library

13 lines (12 loc) 206 B
"use strict"; function pick(obj, keys) { const clone = {}; keys.forEach((key) => { const k = key; if (key in obj) { clone[k] = obj[k]; } }); return clone; } module.exports = pick;