UNPKG

@tacky/store

Version:

State management framework based on react

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