Newer
Older
qd_cnooc_front / static / Cesium / DataSources / createRawPropertyDescriptor.js
[wangxitong] on 27 Nov 2021 325 bytes first commit
import createPropertyDescriptor from "./createPropertyDescriptor.js";

function createRawProperty(value) {
  return value;
}

/**
 * @private
 */
function createRawPropertyDescriptor(name, configurable) {
  return createPropertyDescriptor(name, configurable, createRawProperty);
}
export default createRawPropertyDescriptor;