File tree Expand file tree Collapse file tree 2 files changed +20
-16
lines changed Expand file tree Collapse file tree 2 files changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -11239,31 +11239,35 @@
11239
11239
11240
11240
var properties = {};
11241
11241
11242
- this.get = function ( object ) {
11242
+ return {
11243
11243
11244
- var uuid = object.uuid;
11245
- var map = properties[ uuid ];
11244
+ get: function ( object ) {
11246
11245
11247
- if ( map === undefined ) {
11246
+ var uuid = object.uuid;
11247
+ var map = properties[ uuid ];
11248
11248
11249
- map = {};
11250
- properties[ uuid ] = map;
11249
+ if ( map === undefined ) {
11251
11250
11252
- }
11251
+ map = {};
11252
+ properties[ uuid ] = map;
11253
11253
11254
- return map;
11254
+ }
11255
11255
11256
- };
11256
+ return map;
11257
+
11258
+ },
11257
11259
11258
- this. delete = function ( object ) {
11260
+ delete: function ( object ) {
11259
11261
11260
- delete properties[ object.uuid ];
11262
+ delete properties[ object.uuid ];
11261
11263
11262
- };
11264
+ },
11263
11265
11264
- this. clear = function () {
11266
+ clear: function () {
11265
11267
11266
- properties = {};
11268
+ properties = {};
11269
+
11270
+ }
11267
11271
11268
11272
};
11269
11273
You can’t perform that action at this time.
0 commit comments