hrms-manual/node_modules/core-js/internals/create-property-descriptor.js
2023-09-06 14:51:44 +07:00

9 lines
187 B
JavaScript

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