Closed
Description
I noticed that node/src/node_util.cc has
#define VALUE_METHOD_MAP(V) \
V(isArrayBuffer, IsArrayBuffer) \
V(isDataView, IsDataView) \
V(isDate, IsDate) \
V(isMap, IsMap) \
V(isMapIterator, IsMapIterator) \
V(isPromise, IsPromise) \
V(isRegExp, IsRegExp) \
V(isSet, IsSet) \
V(isSetIterator, IsSetIterator) \
V(isTypedArray, IsTypedArray)
Which is great!
Is there interest in filling it out with IsWeakMap
, IsWeakSet
, IsProxy
, IsSharedArrayBuffer
,
or others?