mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
'use strict';
|
|
|
|
|
|
module.exports = () => {
|
|
const _features = [];
|
|
return {
|
|
getFeatures: () => Promise.resolve(_features),
|
|
addFeature: (feature) => _features.push(feature),
|
|
};
|
|
};
|