-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Value.isDataView() #202
Conversation
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(nodejs#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Using the define to make less visible during incremental addition of features seems reasonable to me. Will leave for another day to allow 48 hours comment period before landing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM- thanks for this change!
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented. PR-URL: #202 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
Landed as b47cce8 |
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented. PR-URL: nodejs/node-addon-api#202 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented. PR-URL: nodejs/node-addon-api#202 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented. PR-URL: nodejs/node-addon-api#202 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
The method is to check if the given value is a data view object. This ia an initial implementation of DataView feature(#196). This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to test modules until all features are implemented. PR-URL: nodejs/node-addon-api#202 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
The method is to check if the given value is a data view object. This ia
an initial implementation of DataView feature(#196).
This change also adds the NAPI_DATA_VIEW_FEATURE flag to expose only to
test modules until all features are implemented.