Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

createRawPropertyDescriptor.js 365B

5 лет назад
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;