UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

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'