UNPKG

@turbox3d/shared

Version:

turbox shared internal utility

12 lines (9 loc) 250 B
import { isReserved, isSymbol } from '../lang'; describe('utils -> lang', () => { it('isReserved', () => { expect(isReserved('$global')).toBeTruthy(); }); it('isSymbol', () => { expect(isSymbol(Symbol('sss'))).toBeTruthy(); }); });