forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
16
yjs-poll/node_modules/lib0/symbol.js
generated
vendored
Normal file
16
yjs-poll/node_modules/lib0/symbol.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* 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'
|
||||
Reference in New Issue
Block a user