I am learning angular2 and building my own custom components using ng2-bootstrap. I want to use modernizer to detect form input which are natively supported by browser.
I am using webpack for building my project.I have successfully configured that.
What I did till now is:
- Install npm install -g modernizr
- Downloaded modernizr-custom.js with only form inputs checked.
- Downloaded modernizr-config.json
- I did modernizr -c modernizr-config.json to get a js file.ow to use
I am not sure how to Modernizr.inputtypes.date in my own custom component?How we can access Modernizr variable in my component?
Any help is much appreciated.