const {
isUndefined
} = require('../is-undefined/is-undefined.js');
function notAsyncWrappable(value) {
return value != null && isUndefined(value[Symbol.asyncIterator]) && isUndefined(value[Symbol.iterator]);
}
exports.notAsyncWrappable = notAsyncWrappable;