Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

getsingle

yeluoqiuzhi29MIT1.0.2

get a singleton

singleton

readme

I can covert anything into singleton mode

example

const create = function() {
  return {};
};

const singletonCreate = getSingle(create);
singletonCreate() === singletonCreate();