2017-09-13 07:52:34 +02:00

8 lines
183 B
JavaScript
Vendored

module.exports = function(bitmap, value){
return {
enumerable : !(bitmap & 1),
configurable: !(bitmap & 2),
writable : !(bitmap & 4),
value : value
};
};