Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pemrouz committed May 13, 2015
0 parents commit aac7177
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
node_modules
coverage
*.log
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"

after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
module.exports = function parse(d){
return d && JSON.parse(d)
}
18 changes: 18 additions & 0 deletions package.json
@@ -0,0 +1,18 @@
{
"name": "parse",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage"
},
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"license": "pemrouz.mit-license.org",
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2"
}
}
12 changes: 12 additions & 0 deletions test.js
@@ -0,0 +1,12 @@
var expect = require('chai').expect
, parse = require('./')

describe('parse', function() {
it('should gracefully return undefined if undefined', function() {
expect(parse()).to.not.be.ok
})

it('should parse object', function() {
expect(parse('{"foo":"bar"}')).to.eql({foo:'bar'})
})
})

0 comments on commit aac7177

Please sign in to comment.