I can covert anything into singleton mode
example
const create = function() {
return {};
};
const singletonCreate = getSingle(create);
singletonCreate() === singletonCreate();get a singleton
const create = function() {
return {};
};
const singletonCreate = getSingle(create);
singletonCreate() === singletonCreate();