Skip to content

Instantly share code, notes, and snippets.

View deepbreath's full-sized avatar
🌴
On vacation

Yuchen deepbreath

🌴
On vacation
  • Mars Company
  • Mars
View GitHub Profile
@qiushijie
qiushijie / json.js
Created January 12, 2019 06:13
手写javascript json解析器
const TokenTypes = {
OPEN_OBJECT: '{',
CLOSE_OBJECT: '}',
OPEN_ARRAY: '[',
CLOSE_ARRAY: ']',
KEY: 'key',
STRING: 'string',
NUMBER: 'number',
TRUE: 'true',
FALSE: 'false',