You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

createRawPropertyDescriptor.js 365B

5 years ago
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;