@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
14 lines (11 loc) • 325 B
JavaScript
import createPropertyDescriptor from "./createPropertyDescriptor.js";
function createRawProperty(value) {
return value;
}
/**
* @private
*/
function createRawPropertyDescriptor(name, configurable) {
return createPropertyDescriptor(name, configurable, createRawProperty);
}
export default createRawPropertyDescriptor;