proptypes
proptypes copied to clipboard
:guardsman: React's PropTypes, as a standalone module.
If this is "literally copied from the React 0.14 codebase" then it's also subject to the patent grant included with that release of React. It would be good to clarify...
inferno-compat expects `proptypes` to export `proptypes.default`. Can you please export both directly and using default property? ``` > require('proptypes').default undefined > require('proptypes') { array: { [Function: bound checkType] isRequired: [Function:...
Hi there, I've stumbled upon this package and was wondering what the difference is compared to React's own prop-types library.
I've been looking a little into reducing the weight of my production `libs.js` and noticed that this `proptypes` lib was adding around ~4kb after minification, I know not much but...
I am used to the react `PropTypes` and I used them for things other than components. I am using `proptypes` but now I need to validate for `Symbol`. This is...