UNPKG

lib0

Version:

> Monorepo of isomorphic utility functions

17 lines (14 loc) 241 B
/** * Utility module to work with EcmaScript Symbols. * * @module symbol */ /** * Return fresh symbol. */ export const create = Symbol /** * @param {any} s * @return {boolean} */ export const isSymbol = s => typeof s === 'symbol'