UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

20 lines (13 loc) 306 B
'use strict'; const internals = { symbols: new Map() }; module.exports = exports = function (subject) { let symbol = internals.symbols.get(subject); if (symbol) { return symbol; } symbol = Symbol(subject); internals.symbols.set(subject, symbol); return symbol; };