17 lines
255 B
JavaScript
17 lines
255 B
JavaScript
|
'use strict';
|
||
|
|
||
|
let types = {};
|
||
|
|
||
|
[
|
||
|
'FUNCTION',
|
||
|
'NOTIFICATION',
|
||
|
'REALM',
|
||
|
'RESULTS',
|
||
|
].forEach(function(type) {
|
||
|
Object.defineProperty(types, type, {
|
||
|
value: 'ObjectTypes' + type,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
module.exports = Object.freeze(types);
|