Last active
April 26, 2021 23:51
-
-
Save younho9/9967ecc9bb6c456b987f69923253cdfd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const filterObj = (obj, f) => (o=Object).fromEntries(o.entries(obj).filter([k,v]=>f(k))) | |
const select = (obj, ...props) => filterObj(obj, k => props.includes(k)) | |
const omit = (obj, ...props) => filterObj(obj, k => !props.includes(k)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment