cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
20 lines (16 loc) • 432 B
JavaScript
define([
'./createPropertyDescriptor'
], function(
createPropertyDescriptor) {
'use strict';
function createRawProperty(value) {
return value;
}
/**
* @private
*/
function createRawPropertyDescriptor(name, configurable) {
return createPropertyDescriptor(name, configurable, createRawProperty);
}
return createRawPropertyDescriptor;
});