createRawPropertyDescriptor.js 325 B

12345678910111213
  1. import createPropertyDescriptor from "./createPropertyDescriptor.js";
  2. function createRawProperty(value) {
  3. return value;
  4. }
  5. /**
  6. * @private
  7. */
  8. function createRawPropertyDescriptor(name, configurable) {
  9. return createPropertyDescriptor(name, configurable, createRawProperty);
  10. }
  11. export default createRawPropertyDescriptor;