Steps to reproduce
const feathers = require('@feathersjs/feathers');
const prop = Symbol('test-it');
const app = feathers()
.use('users', {
create() {},
[prop]: 'ok'
});
const service = app.service('users')
console.log(service[prop]); // undefined
// should be 'ok'
Expected behavior
It should be possible to recover a value with a Symbol key.
Actual behavior
The key disappears.
System configuration
Module versions (especially the part that's not working):
@feathersjs/feathers@^3.1.4
NodeJS version:
v8.11.1
Operating System:
Ubuntu 16.04