Created
September 15, 2017 15:34
-
-
Save rupeshtiwari/f3466b8dde740cfbae61507dc208ceb3 to your computer and use it in GitHub Desktop.
CreateSelector which takes parameter in selector
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 { | |
createSelector | |
} = Reselect; | |
const form = { | |
firstName: 'Rakesh', | |
lastName: 'Verma', | |
age: 12, | |
height: 157 | |
}; | |
const getLastName = (form) => | |
form.lastName; | |
const isLastNameExist = (name) => | |
createSelector(getLastName, (nameProp) => nameProp === name); | |
console.log('is Verma lastname', isLastNameExist('Verma')(form)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment