MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove dead path from json

-1
-1
src/modules/json.c
··· 18 18 case YYJSON_TYPE_STR: return js_mkstr(js, yyjson_get_str(val), yyjson_get_len(val)); 19 19 20 20 case YYJSON_TYPE_NUM: { 21 - if (yyjson_is_int(val)) return js_mknum((double)yyjson_get_int(val)); 22 21 if (yyjson_is_sint(val)) return js_mknum((double)yyjson_get_sint(val)); 23 22 if (yyjson_is_uint(val)) return js_mknum((double)yyjson_get_uint(val)); 24 23 return js_mknum(yyjson_get_real(val));