JASON icon indicating copy to clipboard operation
JASON copied to clipboard

Results 4 JASON issues
Sort by recently updated
recently updated
newest added

I'm getting the following error. ``` TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them at /Users/me/node_modules/JASON/index.js:205:43...

JASON doesn't work on node version 0.12.7. ``` (11:06:16) jamie@suwarna7-Lenovo-K450e ~ $ node -v v0.12.7 (11:06:17) jamie@suwarna7-Lenovo-K450e ~ $ npm install JASON /home/jamie3 └── [email protected] npm WARN enoent ENOENT, open...

This repo hasn't been updated in like 2 years, so I rewrote the tests using a modern test-runner, reformatted the code a little, and made `npm test`/travis work. Right now...

``` coffee-script var obj = { fn: function(url, cb) { require('http').get({ host: url }, cb); } }; var str = JASON.stringify(obj); console.log(str); var newobj = JASON.parse(str); ``` yields ``` {"fn":(function...