$.property-desc.js 183 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 module.exports = function(bitmap, value){ return { enumerable : !(bitmap & 1), configurable: !(bitmap & 2), writable : !(bitmap & 4), value : value }; };