Kargi-Sitesi/node_modules/core-js/internals/create-property-descriptor.js

10 lines
187 B
JavaScript
Raw Normal View History

2024-11-03 21:30:09 -05:00
'use strict';
module.exports = function (bitmap, value) {
return {
enumerable: !(bitmap & 1),
configurable: !(bitmap & 2),
writable: !(bitmap & 4),
value: value
};
};