- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
14 lines
215 B
JavaScript
14 lines
215 B
JavaScript
'use strict';
|
|
|
|
function pick(object, keysToPick) {
|
|
const result = {};
|
|
for (const key of keysToPick) {
|
|
if (key in object) {
|
|
result[key] = object[key];
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
exports.pick = pick;
|