InspectionCleaning/node_modules/core-js/internals/create-property-descriptor.js

10 lines
187 B
JavaScript
Raw Normal View History

2025-04-07 09:53:58 +08:00
'use strict';
module.exports = function (bitmap, value) {
return {
enumerable: !(bitmap & 1),
configurable: !(bitmap & 2),
writable: !(bitmap & 4),
value: value
};
};